now callback errors are not silent but warnings

This commit is contained in:
Brian Coca 2015-07-13 19:22:31 -04:00
commit a09f44210e

View file

@ -300,5 +300,8 @@ class TaskQueueManager:
]
for method in methods:
if method is not None:
try:
method(*args, **kwargs)
except Exception as e:
self._display.warning('Error when using %s: %s' % (method, str(e)))