1
0
Fork 0

adding readable check

pull/1700/head
Vallie Joseph 2024-03-28 18:34:07 +00:00
parent 180b75bf01
commit 077846ed34
1 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,8 @@ export async function uploadZipToBlobStorage(
zipUploadStream.pipe(hashStream).setEncoding('hex') // This stream is used to compute a hash of the zip content that gets used. Integrity check
core.info('Beginning upload of artifact content to blob storage')
const isItReadable = zipUploadStream.readable
core.info(`Is the zipUploadStream readable? ${isItReadable}`)
try {
await blockBlobClient.uploadStream(
uploadStream,