Skip to content

Commit

Permalink
Temporary fix for mobipick execution error
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianstock committed Nov 3, 2023
1 parent 15fda13 commit f7be6bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion up_esb/execution/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ def _execute_action(self, task_id):
executor = self._context[self._action]

# TODO: Proper setup of task tracker
result = executor(**self._parameters)
result = executor(*self._parameters.values())
# result = executor(**self._parameters)

if result is None:
return ActionNodeStatus.UNKNOWN
Expand Down

0 comments on commit f7be6bb

Please sign in to comment.