1
0
Fork 0

Adding more error handlrs

pull/1700/head
Vallie Joseph 2024-03-28 19:22:29 +00:00
parent 17c4cab8b2
commit b6c87ceea7
1 changed files with 8 additions and 0 deletions

View File

@ -60,6 +60,14 @@ export async function uploadZipToBlobStorage(
core.info(`is the upload stream readable? ${uploadStream.readable}`) core.info(`is the upload stream readable? ${uploadStream.readable}`)
core.info(`is the upload stream writable? ${uploadStream.writable}`) core.info(`is the upload stream writable? ${uploadStream.writable}`)
core.info(`are we exceeding the max concurrency? ${maxConcurrency}`) core.info(`are we exceeding the max concurrency? ${maxConcurrency}`)
zipUploadStream.on('error', error => {
core.info(`Error in zipUploadStream: ${error}`)
})
uploadStream.on('error', error => {
core.info(`Error in uploadStream:', ${error}`)
})
try { try {
core.info( core.info(
'1 Even more beginning upload of artifact content to blob storage' '1 Even more beginning upload of artifact content to blob storage'