Skip to content

Commit

Permalink
Fixed wrong constant value during sanity test
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoningLiu authored and vinjiang committed Dec 3, 2018
1 parent 7b1f1ce commit 8f9d654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion file/lib/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 8f9d654

Please sign in to comment.