MCPcopy Create free account
hub / github.com/bugy/script-server / start

Method start

src/execution/process_base.py:29–36  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

27 self.notify_finish_thread = None
28
29 def start(self):
30 self.start_execution(self.command, self.working_directory)
31
32 read_output_thread = threading.Thread(target=self.pipe_process_output)
33 read_output_thread.start()
34
35 self.notify_finish_thread = threading.Thread(target=self.notify_finished)
36 self.notify_finish_thread.start()
37
38 def prepare_env_variables(self):
39 env_variables = dict(**self.all_env_variables)

Callers

nothing calls this directly

Calls 1

start_executionMethod · 0.95

Tested by

no test coverage detected