added callback fallback to v1 methods for backwards compat with existing callbacks

This commit is contained in:
Brian Coca 2015-10-28 19:10:41 -04:00
parent e2c56efca6
commit f4912dd88a

View file

@ -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)))