diff --git a/src/cdn/downloadWithCurl.ts b/src/cdn/downloadWithCurl.ts index c425411..86eb9f4 100644 --- a/src/cdn/downloadWithCurl.ts +++ b/src/cdn/downloadWithCurl.ts @@ -2,8 +2,8 @@ import * as childProcess from 'child_process'; /** Minimum download speed of 10 MB/s = 80 MBit/s */ const MINIMUM_SPEED = 10; -/** Maximum download speed of 20 MB/s = 160 MBit/s */ -const MAXIMUM_SPEED = 20; +/** Maximum download speed of 25 MB/s = 200 MBit/s */ +const MAXIMUM_SPEED = 25; /** Time interval over which the minimum speed is measured to determined whether to timeout. Given in seconds. */ const CHECK_INTERVAL = 15;