MCPcopy Index your code
hub / github.com/bugy/script-server / kill_script

Method kill_script

src/execution/execution_service.py:77–81  ·  view source on GitHub ↗
(self, execution_id, user)

Source from the content-addressed store, hash-verified

75 self._executors[execution_id].stop()
76
77 def kill_script(self, execution_id, user):
78 self.validate_execution_id(execution_id, user)
79
80 if execution_id in self._executors:
81 self._executors[execution_id].kill()
82
83 def kill_script_by_system(self, execution_id):
84 if execution_id in self._executors:

Callers 5

tearDownMethod · 0.80
tearDownMethod · 0.80
tearDownMethod · 0.80
tearDownMethod · 0.80
postMethod · 0.80

Calls 2

validate_execution_idMethod · 0.95
killMethod · 0.45

Tested by 4

tearDownMethod · 0.64
tearDownMethod · 0.64
tearDownMethod · 0.64
tearDownMethod · 0.64