@ -5473,6 +5473,7 @@ const util = __importStar(__webpack_require__(669));
const utils = _ _importStar ( _ _webpack _require _ _ ( 15 ) ) ;
const constants _1 = _ _webpack _require _ _ ( 931 ) ;
const requestUtils _1 = _ _webpack _require _ _ ( 899 ) ;
const abort _controller _1 = _ _webpack _require _ _ ( 106 ) ;
/ * *
* Pipes the body of a HTTP response to a stream
*
@ -5656,17 +5657,26 @@ function downloadCacheStorageSDK(archiveLocation, archivePath, options) {
const fd = fs . openSync ( archivePath , 'w' ) ;
try {
downloadProgress . startDisplayTimer ( ) ;
const controller = new abort _controller _1 . AbortController ( ) ;
const abortSignal = controller . signal ;
while ( ! downloadProgress . isDone ( ) ) {
const segmentStart = downloadProgress . segmentOffset + downloadProgress . segmentSize ;
const segmentSize = Math . min ( maxSegmentSize , contentLength - segmentStart ) ;
downloadProgress . nextSegment ( segmentSize ) ;
const result = yield client . downloadToBuffer ( segmentStart , segmentSize , {
const result = yield promiseWithTimeout ( options . segmentTimeoutInMs || 3600000 , client . downloadToBuffer ( segmentStart , segmentSize , {
abortSignal ,
concurrency : options . downloadConcurrency ,
onProgress : downloadProgress . onProgress ( )
} ) ;
} ) ) ;
if ( result === 'timeout' ) {
controller . abort ( ) ;
throw new Error ( 'Aborting cache download as the download time exceeded the timeout.' ) ;
}
else if ( Buffer . isBuffer ( result ) ) {
fs . writeFileSync ( fd , result ) ;
}
}
}
finally {
downloadProgress . stopDisplayTimer ( ) ;
fs . closeSync ( fd ) ;
@ -5675,6 +5685,16 @@ function downloadCacheStorageSDK(archiveLocation, archivePath, options) {
} ) ;
}
exports . downloadCacheStorageSDK = downloadCacheStorageSDK ;
const promiseWithTimeout = ( timeoutMs , promise ) => _ _awaiter ( void 0 , void 0 , void 0 , function * ( ) {
let timeoutHandle ;
const timeoutPromise = new Promise ( resolve => {
timeoutHandle = setTimeout ( ( ) => resolve ( 'timeout' ) , timeoutMs ) ;
} ) ;
return Promise . race ( [ promise , timeoutPromise ] ) . then ( result => {
clearTimeout ( timeoutHandle ) ;
return result ;
} ) ;
} ) ;
//# sourceMappingURL=downloadUtils.js.map
/***/ } ) ,
@ -40795,7 +40815,8 @@ function getDownloadOptions(copy) {
const result = {
useAzureSdk : true ,
downloadConcurrency : 8 ,
timeoutInMs : 30000
timeoutInMs : 30000 ,
segmentTimeoutInMs : 3600000
} ;
if ( copy ) {
if ( typeof copy . useAzureSdk === 'boolean' ) {
@ -40807,10 +40828,14 @@ function getDownloadOptions(copy) {
if ( typeof copy . timeoutInMs === 'number' ) {
result . timeoutInMs = copy . timeoutInMs ;
}
if ( typeof copy . segmentTimeoutInMs === 'number' ) {
result . segmentTimeoutInMs = copy . segmentTimeoutInMs ;
}
}
core . debug ( ` Use Azure SDK: ${ result . useAzureSdk } ` ) ;
core . debug ( ` Download concurrency: ${ result . downloadConcurrency } ` ) ;
core . debug ( ` Request timeout (ms): ${ result . timeoutInMs } ` ) ;
core . debug ( ` Segment download timeout (ms): ${ result . segmentTimeoutInMs } ` ) ;
return result ;
}
exports . getDownloadOptions = getDownloadOptions ;