From: robk-tahoe Date: Fri, 11 Jan 2008 03:14:00 +0000 (-0700) Subject: fix dumb typo in tahoe run X-Git-Url: https://git.rkrishnan.org/copyable.html?a=commitdiff_plain;h=198f593cad966cf5628e1c78120ba09163271a39;p=tahoe-lafs%2Ftahoe-lafs.git fix dumb typo in tahoe run --- diff --git a/src/allmydata/scripts/startstop_node.py b/src/allmydata/scripts/startstop_node.py index 1b8bf495..aa7bc0c3 100644 --- a/src/allmydata/scripts/startstop_node.py +++ b/src/allmydata/scripts/startstop_node.py @@ -174,7 +174,7 @@ def run(config, stdout, stderr): # run the node itself c = client.Client(basedir) - reactor.callLater(c.startService) # after reactor startup + reactor.callLater(0, c.startService) # after reactor startup reactor.run() return 0