From 8f9d6548ac7f388c995ef819a6a8af8bbcc0b58a Mon Sep 17 00:00:00 2001 From: Xiaoning Liu Date: Fri, 30 Nov 2018 17:48:46 +0800 Subject: [PATCH] Fixed wrong constant value during sanity test --- file/lib/utils/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file/lib/utils/constants.ts b/file/lib/utils/constants.ts index e902a16..8b7e2fe 100644 --- a/file/lib/utils/constants.ts +++ b/file/lib/utils/constants.ts @@ -2,7 +2,7 @@ export const SDK_VERSION: string = "10.0.0-preview"; export const SERVICE_VERSION: string = "2018-03-28"; export const FILE_MAX_SIZE_BYTES: number = 1024 * 1024 * 1024 * 1024; // 1TB -export const FILE_RANGE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024 * 1024; // 4MB +export const FILE_RANGE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024; // 4MB export const DEFAULT_MAX_DOWNLOAD_RETRY_REQUESTS: number = 5; export const DEFAULT_HIGH_LEVEL_PARALLELISM: number = 5;