defaulting compression level

This commit is contained in:
Vallie Joseph
2024-03-28 19:15:10 +00:00
parent 0a0e70d1cd
commit 59593338a6
3 changed files with 11 additions and 12 deletions
@@ -60,20 +60,16 @@ export async function uploadZipToBlobStorage(
core.info(`is the upload stream readable? ${uploadStream.readable}`)
core.info(`is the upload stream writable? ${uploadStream.writable}`)
core.info(`are we exceeding the max concurrency? ${maxConcurrency}`)
// is the blob client ready?
core.info(`blob client props: ${blockBlobClient.url}`)
try {
core.info(
'1 Even more beginning upload of artifact content to blob storage'
)
await blockBlobClient
.uploadStream(uploadStream, bufferSize, maxConcurrency, options)
.catch(error => {
core.info(`Upload stream error: ${error}`)
})
.then(response => {
core.info(`Upload stream response: ${response}`)
})
await blockBlobClient.uploadStream(
uploadStream,
bufferSize,
maxConcurrency,
options
)
core.info(
'2 Even more beginning upload of artifact content to blob storage'
)