File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -321,8 +321,8 @@ config.BUCKET_RECLAIMER_ERROR_DELAY = 3000;
321
321
config . OBJECT_RECLAIMER_ENABLED = true ;
322
322
config . OBJECT_RECLAIMER_EMPTY_DELAY = 60 * 60 * 1000 ; // 1 hour delay
323
323
config . OBJECT_RECLAIMER_BATCH_SIZE = 100 ;
324
- config . OBJECT_RECLAIMER_BATCH_DELAY = 10 * 60 * 1000 ; // 10 minutes delay between batches
325
- config . OBJECT_RECLAIMER_ERROR_DELAY = 10 * 60 * 1000 ; // 10 minutes delay between batches ;
324
+ config . OBJECT_RECLAIMER_BATCH_DELAY = 100 ;
325
+ config . OBJECT_RECLAIMER_ERROR_DELAY = 3000 ;
326
326
327
327
//////////////////
328
328
// CHUNK CONFIG //
Original file line number Diff line number Diff line change @@ -559,7 +559,7 @@ function check_headers(req, options) {
559
559
560
560
const content_encoding = req . headers [ 'content-encoding' ] || '' ;
561
561
req . chunked_content =
562
- content_encoding . split ( ',' ) . includes ( 'aws-chunked' ) ||
562
+ content_encoding . split ( ',' ) . map ( encoding => encoding . trim ( ) ) . includes ( 'aws-chunked' ) ||
563
563
content_sha256_hdr === STREAMING_PAYLOAD ;
564
564
565
565
const req_time =
You can’t perform that action at this time.
0 commit comments