mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Merge pull request #12956 from bcoca/v1_callbacks
added callback fallback to v1 methods
This commit is contained in:
@@ -279,4 +279,8 @@ class TaskQueueManager:
|
||||
try:
|
||||
method(*args, **kwargs)
|
||||
except Exception as e:
|
||||
self._display.warning('Error when using %s: %s' % (method, str(e)))
|
||||
try:
|
||||
v1_method = method.replace('v2_','')
|
||||
v1_method(*args, **kwargs)
|
||||
except Exception:
|
||||
self._display.warning('Error when using %s: %s' % (method, str(e)))
|
||||
|
||||
Reference in New Issue
Block a user