diff --git a/deluge/component.py b/deluge/component.py index b24a848c3..e9c7ea799 100644 --- a/deluge/component.py +++ b/deluge/component.py @@ -102,7 +102,7 @@ class Component(object): if self._component_state == "Stopped": if hasattr(self, "start"): self._component_state = "Starting" - d = deferLater(reactor, 1, self.start) + d = deferLater(reactor, 0, self.start) d.addCallbacks(on_start, on_start_fail) self._component_starting_deferred = d else: