From 244a437d1bad9e7b891fd376d0ac6ea4e8cc7839 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 29 Sep 2008 19:12:27 +0000 Subject: [PATCH] Change the default max global upload slots to 4 instead of -1 since libtorrent will automatically open more slots to meet the upload speed limit. --- 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 b2237eddc..47a141643 100644 --- a/deluge/core/preferencesmanager.py +++ b/deluge/core/preferencesmanager.py @@ -68,7 +68,7 @@ DEFAULT_PREFS = { "max_connections_global": -1, "max_upload_speed": -1.0, "max_download_speed": -1.0, - "max_upload_slots_global": -1, + "max_upload_slots_global": 4, "max_half_open_connections": -1, "max_connections_per_second": -1, "ignore_limits_on_local_network": True,