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

Method _do_delete

st2tests/st2tests/api.py:406–409  ·  view source on GitHub ↗
(self, actionexecution_id, expect_errors=False)

Source from the content-addressed store, hash-verified

404 return self.app.post_json("/v1/executions", liveaction, *args, **kwargs)
405
406 def _do_delete(self, actionexecution_id, expect_errors=False):
407 return self.app.delete(
408 "/v1/executions/%s" % actionexecution_id, expect_errors=expect_errors
409 )
410
411 def _do_put(self, actionexecution_id, updates, *args, **kwargs):
412 return self.app.put_json(

Callers

nothing calls this directly

Calls 1

deleteMethod · 0.45

Tested by

no test coverage detected