1
0
Fork 0
mirror of synced 2024-06-15 13:51:08 -04:00

Restore try logic in dispatcher.

This commit is contained in:
Jesse Leite 2019-10-06 18:48:49 -04:00
parent 83c324cb1f
commit 94080ea3a6

View file

@ -27,8 +27,8 @@ class Dispatcher(object):
# keep going, let other plugins handle this if they want
for plugin in self._plugins:
if plugin.can_handle(action):
success &= plugin.handle(action, task[action])
try:
success &= plugin.handle(action, task[action])
handled = True
except Exception as err:
self._log.error(