From 1004b8091f5f3f1a09c285b54b9c31611cfa2562 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 6 Oct 2008 10:58:28 +0000 Subject: [PATCH] Set max connections per second default to 20 since this seems to fix the slow speed issue that some people experience. --- deluge/core/preferencesmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/preferencesmanager.py b/deluge/core/preferencesmanager.py index 47a141643..7f915f398 100644 --- a/deluge/core/preferencesmanager.py +++ b/deluge/core/preferencesmanager.py @@ -70,7 +70,7 @@ DEFAULT_PREFS = { "max_download_speed": -1.0, "max_upload_slots_global": 4, "max_half_open_connections": -1, - "max_connections_per_second": -1, + "max_connections_per_second": 20, "ignore_limits_on_local_network": True, "max_connections_per_torrent": -1, "max_upload_slots_per_torrent": -1,