mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-20 15:51:05 +00:00
fix: playbook_on_task_start expects name and not task object (#16168)
This commit is contained in:
committed by
Brian Coca
parent
ef9238ab85
commit
721da46842
@@ -313,7 +313,7 @@ class CallbackBase:
|
||||
self.playbook_on_no_hosts_remaining()
|
||||
|
||||
def v2_playbook_on_task_start(self, task, is_conditional):
|
||||
self.playbook_on_task_start(task, is_conditional)
|
||||
self.playbook_on_task_start(task.name, is_conditional)
|
||||
|
||||
def v2_playbook_on_cleanup_task_start(self, task):
|
||||
pass #no v1 correspondance
|
||||
|
||||
Reference in New Issue
Block a user