1
0
Fork 0

Update the useragent of the old http client to pass cache version

pull/1882/head
Bassem Dghaidi 2024-11-27 05:50:01 -08:00 committed by GitHub
parent 27e5cf2514
commit af3981c955
2 changed files with 22 additions and 25 deletions

View File

@ -161,14 +161,11 @@ async function restoreCacheV1(
)
core.debug(`Archive Path: ${archivePath}`)
// Download the cache archive from from blob storage
// Download the cache from the cache entry
await cacheHttpClient.downloadCache(
cacheEntry.archiveLocation,
archivePath,
options ||
({
timeoutInMs: 30000
} as DownloadOptions)
options
)
if (core.isDebug()) {

View File

@ -34,6 +34,7 @@ import {
retryTypedResponse
} from './requestUtils'
import { getCacheServiceURL } from './config'
import { getUserAgentString } from './shared/user-agent'
function getCacheApiUrl(resource: string): string {
const baseUrl: string = getCacheServiceURL()
@ -65,7 +66,7 @@ function createHttpClient(): HttpClient {
const bearerCredentialHandler = new BearerCredentialHandler(token)
return new HttpClient(
'actions/cache',
getUserAgentString(),
[bearerCredentialHandler],
getRequestOptions()
)
@ -216,8 +217,7 @@ async function uploadChunk(
end: number
): Promise<void> {
core.debug(
`Uploading chunk of size ${
end - start + 1
`Uploading chunk of size ${end - start + 1
} bytes at offset ${start} with content range: ${getContentRange(
start,
end