Make the autoadd update interval 5 seconds as intended
This commit is contained in:
parent
c28574502c
commit
85ad5314fe
|
@ -40,7 +40,7 @@ MAX_NUM_ATTEMPTS = 10
|
||||||
|
|
||||||
class AutoAdd(component.Component):
|
class AutoAdd(component.Component):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
component.Component.__init__(self, "AutoAdd", depend=["TorrentManager"], interval=5000)
|
component.Component.__init__(self, "AutoAdd", depend=["TorrentManager"], interval=5)
|
||||||
# Get the core config
|
# Get the core config
|
||||||
self.config = ConfigManager("core.conf")
|
self.config = ConfigManager("core.conf")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue