mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
added callback fallback to v1 methods for backwards compat with existing callbacks
This commit is contained in:
parent
e2c56efca6
commit
f4912dd88a
1 changed files with 5 additions and 1 deletions
|
@ -279,4 +279,8 @@ class TaskQueueManager:
|
||||||
try:
|
try:
|
||||||
method(*args, **kwargs)
|
method(*args, **kwargs)
|
||||||
except Exception as e:
|
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)))
|
||||||
|
|
Loading…
Reference in a new issue