1
0
Fork 0

defaulting compression level

pull/1700/head
Vallie Joseph 2024-03-28 19:15:10 +00:00
parent 0a0e70d1cd
commit 59593338a6
3 changed files with 11 additions and 12 deletions

View File

@ -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'
)

View File

@ -75,7 +75,10 @@ export async function uploadArtifact(
return uploadZipToBlobStorage(
createArtifactResp.signedUploadUrl,
zipUploadStream
)
).catch(err => {
core.error(`Error uploading artifact: ${err}`)
throw err
})
})
.then(async uploadResult => {
const finalizeArtifactReq: FinalizeArtifactRequest = {

View File

@ -30,7 +30,7 @@ export async function createZipUploadStream(
`Creating Artifact archive with compressionLevel: ${compressionLevel}`
)
const zlibOptions = {
zlib: {level: compressionLevel, bufferSize: getUploadChunkSize()}
zlib: {level: DEFAULT_COMPRESSION_LEVEL, bufferSize: getUploadChunkSize()}
}
const zip = new ZipStream.default(zlibOptions)
// register callbacks for various events during the zip lifecycle