mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-10 12:20:02 +00:00
startstop_node.py: use SIGINT instead of SIGTERM to stop the node (fixes #143)
This commit is contained in:
parent
e4aa204b41
commit
93efd2902e
@ -85,7 +85,7 @@ def do_stop(basedir, out=sys.stdout, err=sys.stderr):
|
||||
|
||||
timer = 0
|
||||
try:
|
||||
os.kill(pid, signal.SIGINT)
|
||||
os.kill(pid, signal.SIGTERM)
|
||||
except OSError, oserr:
|
||||
if oserr.errno == 3:
|
||||
print oserr.strerror
|
||||
|
Loading…
x
Reference in New Issue
Block a user