Increase max downloads per minute
5 dl/min was set in 2012. With more people behind IPv4, ten years later,
let's use a more sensible number.
Change-Id: I023fb92d9a11c36620228109a08060bf8d999b6a
Signed-off-by: Denis Roy <denis.roy@eclipse-foundation.org>
diff --git a/download.php b/download.php
index 0f29c69..b9f7cf7 100755
--- a/download.php
+++ b/download.php
@@ -148,7 +148,7 @@
# Throttle the percentage of downloads we accept for update manager redirects
$our_download_percentage = 5;
- define('MAX_DOWNLOADS_PER_MINUTE', 5);
+ define('MAX_DOWNLOADS_PER_MINUTE', 60); # one per second
# Log download stats, and to which table. log_download_table will be suffixed with a number later
$log_download = !$App->getDBReadOnly();