Merge pull request #356 from cdburkard/patches/stop_controller

fix for controller shutdown - send SIGHUP rather than SIGKILL
This commit is contained in:
lantz
2014-08-20 22:04:51 -05:00
+1 -1
View File
@@ -205,7 +205,7 @@ class Node( object ):
def terminate( self ): def terminate( self ):
"Send kill signal to Node and clean up after it." "Send kill signal to Node and clean up after it."
if self.shell: if self.shell:
os.killpg( self.pid, signal.SIGKILL ) os.killpg( self.pid, signal.SIGHUP )
self.cleanup() self.cleanup()
def stop( self ): def stop( self ):