Skip to content

Commit

Permalink
variable are now handled when using ignore_error
Browse files Browse the repository at this point in the history
  • Loading branch information
elias-boulharts authored and Sispheor committed Jan 5, 2024
1 parent cfaa517 commit 2a1caec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/callback/monkeyble_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ def v2_runner_on_start(self, host, task):
task_copy.name = templated_task_name
task_copy._name = templated_task_name
self._last_task_name = templated_task_name
self._last_task_ignore_errors = task.ignore_errors
templated_task_ignore_errors = templar.template(task.ignore_errors)
self._last_task_ignore_errors = templated_task_ignore_errors

# get a monkeyble config for the current task
self._last_task_config = get_task_config(ansible_task=task_copy, monkeyble_config=self.monkeyble_config)
Expand Down

0 comments on commit 2a1caec

Please # to comment.