Skip to content

Commit

Permalink
Send SIGTERM rather than SIGKILL so daemon can do cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
petertdavies committed Sep 6, 2024
1 parent c324919 commit 7e0cc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evm_transition_tool/execution_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def shutdown(self):
Stops the t8n-server process if it was started.
"""
if self.process:
self.process.kill()
self.process.terminate()
if self.server_dir:
self.server_dir.cleanup()
self.server_dir = None
Expand Down

0 comments on commit 7e0cc95

Please sign in to comment.