Updated 45 mins abort timeout to 1 hour

This commit is contained in:
Sankalp Kotewar
2022-08-05 05:44:59 +00:00
parent fe1ee8b6b4
commit 518f480528
3 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ import {
const useAzureSdk = true
const downloadConcurrency = 8
const timeoutInMs = 30000
const abortTimeInMs = 2700000
const abortTimeInMs = 3600000
const uploadConcurrency = 4
const uploadChunkSize = 32 * 1024 * 1024
@@ -28,7 +28,7 @@ test('getDownloadOptions overrides all settings', async () => {
useAzureSdk: false,
downloadConcurrency: 14,
timeoutInMs: 20000,
abortTimeInMs: 2700000
abortTimeInMs: 3600000
}
const actualOptions = getDownloadOptions(expectedOptions)