Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion st2actions/st2actions/workflows/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def handle_action_execution(self, ac_ex_db):

# Skip if task execution is already in completed state.
if task_ex_db.status in statuses.COMPLETED_STATUSES:
msg = ('[%s] Action execution "%s" for task "%s (%s)", route "%s", is not processed '
msg = ('[%s] Action execution "%s" for task "%s", route "%s", is not processed '
'because task execution "%s" is already in completed state "%s".')
LOG.info(msg, wf_ac_ex_id, str(ac_ex_db.id), task_ex_db.task_id,
str(task_ex_db.task_route), str(task_ex_db.id), task_ex_db.status)
Expand Down