From d2d69999e3ed8b443265b0d735ce98e37e88c469 Mon Sep 17 00:00:00 2001 From: Vallie Joseph Date: Thu, 28 Mar 2024 18:53:15 +0000 Subject: [PATCH] adding write check --- packages/artifact/src/internal/upload/blob-upload.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/artifact/src/internal/upload/blob-upload.ts b/packages/artifact/src/internal/upload/blob-upload.ts index d7938439..42109c7e 100644 --- a/packages/artifact/src/internal/upload/blob-upload.ts +++ b/packages/artifact/src/internal/upload/blob-upload.ts @@ -53,10 +53,12 @@ export async function uploadZipToBlobStorage( core.info('Beginning upload of artifact content to blob storage') core.info(`Is the zipUploadStream readable? ${zipUploadStream.readable}`) // it is readable, that's good + core.info(`Is the zipUploadStream writable now? ${zipUploadStream.writable}`) // it is readable, that's good core.info(`Is the zipUploadStream closed? ${zipUploadStream.closed}`) // it is not closed, that's good core.info(`Is the buffer size appropriate? ${bufferSize}`) // it is not closed, that's good core.info(`is the upload stream closed? ${uploadStream.closed}`) core.info(`is the upload stream readable? ${uploadStream.readable}`) + core.info(`is the upload stream writable? ${uploadStream.writable}`) try { core.info( '1 Even more beginning upload of artifact content to blob storage'