Increase libtorrent alert queue size. fix #2204

This commit is contained in:
Chase Sterling 2012-12-07 23:10:09 -05:00
parent 23b0f58eb4
commit 9286d43ba8
2 changed files with 3 additions and 0 deletions

View file

@ -8,6 +8,7 @@
* #2201: Fix error in authmanager if auth file has extra newlines
* #2109: Fix the Proxy settings not being cleared by setting None
* #2110: Fix accepting magnet uris with xt param anywhere within them
* #2204: Fix daemon shutdown hang
==== GtkUI ====
* Add move completed option to add torrent dialog

View file

@ -95,6 +95,8 @@ class Core(component.Component):
# Set the user agent
self.settings = lt.session_settings()
self.settings.user_agent = "Deluge %s" % deluge.common.get_version()
# Increase the alert queue size so that alerts don't get lost
self.settings.alert_queue_size = 10000
# Set session settings
self.settings.send_redundant_have = True