From 4cc99ce3b171382b1b9d1bda351c8a6b535e3e6f Mon Sep 17 00:00:00 2001 From: robk-tahoe Date: Thu, 10 Jan 2008 15:30:31 -0700 Subject: [PATCH] fix a couple of typos in tahoesvc startup --- windows/tahoesvc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/tahoesvc.py b/windows/tahoesvc.py index 64686ab1..b1c885a3 100644 --- a/windows/tahoesvc.py +++ b/windows/tahoesvc.py @@ -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: -- 2.45.2