mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -07:00
now calls correct v2_on_any callback method
This commit is contained in:
parent
f9d817e636
commit
a918a1bd16
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ class TaskQueueManager:
|
||||||
continue
|
continue
|
||||||
methods = [
|
methods = [
|
||||||
getattr(callback_plugin, method_name, None),
|
getattr(callback_plugin, method_name, None),
|
||||||
getattr(callback_plugin, 'on_any', None)
|
getattr(callback_plugin, 'v2_on_any', None)
|
||||||
]
|
]
|
||||||
for method in methods:
|
for method in methods:
|
||||||
if method is not None:
|
if method is not None:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue