mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-31 21:39:10 -07:00
Renaming per-item and retry callbacks
This commit is contained in:
parent
959711b56e
commit
13f3cbaf3b
8 changed files with 21 additions and 21 deletions
|
@ -341,15 +341,15 @@ class CallbackBase:
|
|||
def v2_playbook_on_include(self, included_file):
|
||||
pass #no v1 correspondance
|
||||
|
||||
def v2_playbook_item_on_ok(self, result):
|
||||
def v2_runner_item_on_ok(self, result):
|
||||
pass
|
||||
|
||||
def v2_playbook_item_on_failed(self, result):
|
||||
def v2_runner_item_on_failed(self, result):
|
||||
pass
|
||||
|
||||
def v2_playbook_item_on_skipped(self, result):
|
||||
def v2_runner_item_on_skipped(self, result):
|
||||
pass
|
||||
|
||||
def v2_playbook_retry(self, result):
|
||||
def v2_runner_retry(self, result):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue