]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fix dumb typo in tahoe run
authorrobk-tahoe <robk-tahoe@allmydata.com>
Fri, 11 Jan 2008 03:14:00 +0000 (20:14 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Fri, 11 Jan 2008 03:14:00 +0000 (20:14 -0700)
src/allmydata/scripts/startstop_node.py

index 1b8bf49594ab84464270eb0443a5eacc23eb7d6a..aa7bc0c3e084770e9b844b9249a77875c05820c1 100644 (file)
@@ -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