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 @@ -388,8 +388,8 @@ config.BUCKET_RECLAIMER_ERROR_DELAY = 3000;
388
388
config . OBJECT_RECLAIMER_ENABLED = true ;
389
389
config . OBJECT_RECLAIMER_EMPTY_DELAY = 60 * 60 * 1000 ; // 1 hour delay
390
390
config . OBJECT_RECLAIMER_BATCH_SIZE = 100 ;
391
- config . OBJECT_RECLAIMER_BATCH_DELAY = 10 * 60 * 1000 ; // 10 minutes delay between batches
392
- config . OBJECT_RECLAIMER_ERROR_DELAY = 10 * 60 * 1000 ; // 10 minutes delay between batches ;
391
+ config . OBJECT_RECLAIMER_BATCH_DELAY = 100 ;
392
+ config . OBJECT_RECLAIMER_ERROR_DELAY = 3000 ;
393
393
394
394
395
395
//////////////////
Original file line number Diff line number Diff line change @@ -629,7 +629,7 @@ function check_headers(req, options) {
629
629
630
630
const content_encoding = req . headers [ 'content-encoding' ] || '' ;
631
631
req . chunked_content =
632
- content_encoding . split ( ',' ) . includes ( 'aws-chunked' ) ||
632
+ content_encoding . split ( ',' ) . map ( encoding => encoding . trim ( ) ) . includes ( 'aws-chunked' ) ||
633
633
content_sha256_hdr === STREAMING_PAYLOAD ;
634
634
635
635
const req_time =
You can’t perform that action at this time.
0 commit comments