mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
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.
This commit is contained in:
parent
7ee5547066
commit
9486b24907
2 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
|||
Deluge 1.0.1 (In Development)
|
||||
Core:
|
||||
* 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.
|
||||
|
||||
Misc:
|
||||
* Fix #187 set a 5 second timer to save the config file after a config value
|
||||
has been changed.
|
||||
|
|
|
@ -84,7 +84,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,
|
||||
|
|
Loading…
Add table
Reference in a new issue