1
0
Fork 0

Troubleshoot

pull/1882/head
Bassem Dghaidi 2024-12-02 03:08:05 -08:00 committed by GitHub
parent ee1c07d0aa
commit 4a272e9053
1 changed files with 20 additions and 23 deletions

View File

@ -140,17 +140,14 @@ export async function uploadCacheArchiveSDK(
onProgress: uploadProgress.onProgress() onProgress: uploadProgress.onProgress()
} }
try { // try {
uploadProgress.startDisplayTimer() uploadProgress.startDisplayTimer()
core.debug( core.debug(
`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}` `BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`
) )
const response = await blockBlobClient.uploadFile( const response = await blockBlobClient.uploadFile(archivePath, uploadOptions)
archivePath,
uploadOptions
)
// TODO: better management of non-retryable errors // TODO: better management of non-retryable errors
if (response._response.status >= 400) { if (response._response.status >= 400) {
@ -160,10 +157,10 @@ export async function uploadCacheArchiveSDK(
} }
return response return response
} catch (error) { // } catch (error) {
core.debug(`Error uploading cache archive: ${error}`) // core.debug(`Error uploading cache archive: ${error}`)
throw error // throw error
} finally { // } finally {
uploadProgress.stopDisplayTimer() // uploadProgress.stopDisplayTimer()
} // }
} }