Skip to content

Commit 3ef886f

Browse files
author
Alan Christie
committed
feat: Remove set_running_workflow_step_command() APIAdapter method
1 parent 3443bcb commit 3ef886f

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

workflow/workflow_abc.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,6 @@ def get_running_workflow_step(
186186
# }
187187
# If not present an empty dictionary should be returned.
188188

189-
@abstractmethod
190-
def set_running_workflow_step_command(
191-
self,
192-
*,
193-
running_workflow_step_id: str,
194-
command: str,
195-
) -> None:
196-
"""Set the command value for a RunningWorkflowStep Record"""
197-
198189
@abstractmethod
199190
def set_running_workflow_step_done(
200191
self,

workflow/workflow_engine.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,6 @@ def _handle_workflow_start_message(self, r_wfid: str) -> None:
166166
first_step_name, r_wfid, r_wfsid, lr.error_num, lr.error_msg
167167
)
168168
else:
169-
if lr.command:
170-
self._wapi_adapter.set_running_workflow_step_command(
171-
running_workflow_step_id=r_wfsid,
172-
command=lr.command,
173-
)
174169
_LOGGER.info(
175170
"Launched first step '%s' (command=%s)", first_step_name, lr.command
176171
)

0 commit comments

Comments
 (0)