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

Method stop_script

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

Source from the content-addressed store, hash-verified

69 return execution_id
70
71 def stop_script(self, execution_id, user):
72 self.validate_execution_id(execution_id, user)
73
74 if execution_id in self._executors:
75 self._executors[execution_id].stop()
76
77 def kill_script(self, execution_id, user):
78 self.validate_execution_id(execution_id, user)

Callers 4

perform_executionMethod · 0.80
test_cleanupMethod · 0.80
postMethod · 0.80

Calls 2

validate_execution_idMethod · 0.95
stopMethod · 0.45

Tested by 3

perform_executionMethod · 0.64
test_cleanupMethod · 0.64