1
0
Fork 0

updating timeout

pull/1712/head
Vallie Joseph 2024-04-09 19:24:52 +00:00
parent 4fc93ec115
commit 2ed9516172
2 changed files with 2 additions and 2 deletions

View File

@ -425,7 +425,7 @@ describe('upload-artifact', () => {
options.onProgress({loadedBytes: 100})
resolve()
}, 31000) // Delay longer than your timeout
}, 61000) // Delay longer than your timeout
})
}
)

View File

@ -30,7 +30,7 @@ export async function uploadZipToBlobStorage(
const bufferSize = getUploadChunkSize()
const blobClient = new BlobClient(authenticatedUploadURL)
const blockBlobClient = blobClient.getBlockBlobClient()
const timeoutDuration = 300000 // 30 seconds
const timeoutDuration = 600000 // 30 seconds
core.debug(
`Uploading artifact zip to blob storage with maxConcurrency: ${maxConcurrency}, bufferSize: ${bufferSize}`