Skip to content
Snippets Groups Projects
Commit 6a69c2f6 authored by lantz's avatar lantz
Browse files

Merge pull request #356 from cdburkard/patches/stop_controller

fix for controller shutdown - send SIGHUP rather than SIGKILL
parents db888fa5 c9b844a7
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,7 @@ def write( self, data ):
def terminate( self ):
"Send kill signal to Node and clean up after it."
if self.shell:
os.killpg( self.pid, signal.SIGKILL )
os.killpg( self.pid, signal.SIGHUP )
self.cleanup()
def stop( self ):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment