replacing timeout

This commit is contained in:
Vallie Joseph
2024-04-09 20:51:12 +00:00
parent 0d3d3bbb40
commit 90fca23920
3 changed files with 3 additions and 3 deletions

View File

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