Skip to content

Commit

Permalink
adding readable check
Browse files Browse the repository at this point in the history
  • Loading branch information
vmjoseph committed Mar 28, 2024
1 parent 180b75b commit 077846e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/artifact/src/internal/upload/blob-upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 077846e

Please sign in to comment.