Commit a09f4421 by Brian Coca

now callback errors are not silent but warnings

parent e0632cb9
......@@ -300,5 +300,8 @@ class TaskQueueManager:
]
for method in methods:
if method is not None:
method(*args, **kwargs)
try:
method(*args, **kwargs)
except Exception as e:
self._display.warning('Error when using %s: %s' % (method, str(e)))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment