MCPcopy Create free account
hub / github.com/StackStorm/st2 / remove_process

Method remove_process

st2tests/st2tests/base.py:619–624  ·  view source on GitHub ↗

Remove process from a local data structure.

(self, process)

Source from the content-addressed store, hash-verified

617 self.processes[process.pid] = process
618
619 def remove_process(self, process):
620 """
621 Remove process from a local data structure.
622 """
623 if process.pid in self.processes:
624 del self.processes[process.pid]
625
626 def assertProcessIsRunning(self, process):
627 """

Calls

no outgoing calls