Fix torrentmanagers update interval to 5 seconds
This commit is contained in:
parent
b6fe5166a8
commit
1375d4f545
|
@ -110,7 +110,7 @@ class TorrentManager(component.Component):
|
||||||
session for use on restart."""
|
session for use on restart."""
|
||||||
|
|
||||||
def __init__(self, session, alerts):
|
def __init__(self, session, alerts):
|
||||||
component.Component.__init__(self, "TorrentManager", interval=5000, depend=["CorePluginManager"])
|
component.Component.__init__(self, "TorrentManager", interval=5, depend=["CorePluginManager"])
|
||||||
log.debug("TorrentManager init..")
|
log.debug("TorrentManager init..")
|
||||||
# Set the libtorrent session
|
# Set the libtorrent session
|
||||||
self.session = session
|
self.session = session
|
||||||
|
|
Loading…
Reference in New Issue