Hopefully, fix LaterGuage error handling

pull/3314/merge
Richard van der Hoff 2018-06-04 15:59:14 +01:00
parent 5dbf305444
commit 694968fa81
1 changed files with 6 additions and 3 deletions

View File

@ -60,10 +60,13 @@ class LaterGauge(object):
try: try:
calls = self.caller() calls = self.caller()
except Exception as e: except Exception:
print(e) logger.exception(
logger.err() "Exception running callback for LaterGuage(%s)",
self.name,
)
yield g yield g
return
if isinstance(calls, dict): if isinstance(calls, dict):
for k, v in calls.items(): for k, v in calls.items():