fix a couple of typos in tahoesvc startup

This commit is contained in:
robk-tahoe 2008-01-10 15:30:31 -07:00
parent ac5f7cf7aa
commit 4cc99ce3b1

View 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: