]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fix a couple of typos in tahoesvc startup
authorrobk-tahoe <robk-tahoe@allmydata.com>
Thu, 10 Jan 2008 22:30:31 +0000 (15:30 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Thu, 10 Jan 2008 22:30:31 +0000 (15:30 -0700)
windows/tahoesvc.py

index 64686ab141b8e91da043080e06c2b153a5f39a37..b1c885a326a64d1ba60346407cb708a3ec05172d 100644 (file)
@@ -145,8 +145,8 @@ class Tahoe(win32serviceutil.ServiceFramework):
 
             # run the node itself
             c = client.Client(basedir)
-            reactor.callLater(c.startService) # after reactor startup
-            reactor.run(dont_bind_signals=True) # does a reactor.run()
+            reactor.callLater(0, c.startService) # after reactor startup
+            reactor.run(installSignalHandlers=False)
 
             logmsg("main thread shutdown")
         except: