1
0
Fork 0

Add another catch to see if upload stream is failing

pull/1700/head
Vallie Joseph 2024-03-28 19:09:53 +00:00
parent c9e825e841
commit 0a0e70d1cd
1 changed files with 3 additions and 0 deletions

View File

@ -68,6 +68,9 @@ export async function uploadZipToBlobStorage(
)
await blockBlobClient
.uploadStream(uploadStream, bufferSize, maxConcurrency, options)
.catch(error => {
core.info(`Upload stream error: ${error}`)
})
.then(response => {
core.info(`Upload stream response: ${response}`)
})