🐎 Increase maximum download speed to 25 MB/s
This commit is contained in:
parent
43d4019860
commit
cad71700b5
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@ import * as childProcess from 'child_process';
|
||||||
|
|
||||||
/** Minimum download speed of 10 MB/s = 80 MBit/s */
|
/** Minimum download speed of 10 MB/s = 80 MBit/s */
|
||||||
const MINIMUM_SPEED = 10;
|
const MINIMUM_SPEED = 10;
|
||||||
/** Maximum download speed of 20 MB/s = 160 MBit/s */
|
/** Maximum download speed of 25 MB/s = 200 MBit/s */
|
||||||
const MAXIMUM_SPEED = 20;
|
const MAXIMUM_SPEED = 25;
|
||||||
/** Time interval over which the minimum speed is measured to determined whether to timeout. Given in seconds. */
|
/** Time interval over which the minimum speed is measured to determined whether to timeout. Given in seconds. */
|
||||||
const CHECK_INTERVAL = 15;
|
const CHECK_INTERVAL = 15;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue