From cad71700b575bce37833f55a66075137b9597de4 Mon Sep 17 00:00:00 2001 From: C-3PO Date: Fri, 16 Nov 2018 16:39:33 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=8E=20Increase=20maximum=20download=20?= =?UTF-8?q?speed=20to=2025=20MB/s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cdn/downloadWithCurl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;