Adding unit tests to WorkflowPlayer.py
This commit is contained in:
@@ -135,8 +135,8 @@ def post(session, _id: str, tab_boundaries: str):
|
||||
return instance.play_workflow(json.loads(tab_boundaries))
|
||||
|
||||
@rt(Routes.StopWorkflow)
|
||||
def post(session, _id: str, tab_boundaries: str):
|
||||
def post(session, _id: str):
|
||||
logger.debug(
|
||||
f"Entering {Routes.StopWorkflow} with args {debug_session(session)}, {_id=}")
|
||||
instance = InstanceManager.get(session, _id)
|
||||
return instance.stop_workflow(json.loads(tab_boundaries))
|
||||
return instance.stop_workflow()
|
||||
Reference in New Issue
Block a user