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 readable? ${uploadStream.readable}`)
core.info(`is the upload stream writable? ${uploadStream.writable}`) core.info(`is the upload stream writable? ${uploadStream.writable}`)
core.info(`are we exceeding the max concurrency? ${maxConcurrency}`) core.info(`are we exceeding the max concurrency? ${maxConcurrency}`)
// is the blob client ready?
core.info(`blob client props: ${blockBlobClient.url}`)
try { try {
core.info( core.info(
'1 Even more beginning upload of artifact content to blob storage' '1 Even more beginning upload of artifact content to blob storage'
) )
await blockBlobClient await blockBlobClient.uploadStream(
.uploadStream(uploadStream, bufferSize, maxConcurrency, options) uploadStream,
.catch(error => { bufferSize,
core.info(`Upload stream error: ${error}`) maxConcurrency,
}) options
.then(response => { )
core.info(`Upload stream response: ${response}`)
})
core.info( core.info(
'2 Even more beginning upload of artifact content to blob storage' '2 Even more beginning upload of artifact content to blob storage'
) )

View File

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

View File

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