This commit is contained in:
Romain Dorgueil
2016-12-26 13:56:59 +01:00
parent 4bc6248ee4
commit 428b797f58

View File

@ -230,10 +230,10 @@ class ComponentExecutionContext(WithStatistics):
sleep(1)
# Terminated, exit loop.
break # BREAK !!!
except Empty as e:
except Empty:
continue
except Exception as e:
self.handle_error(e, traceback.format_exc())
except Exception as exc:
self.handle_error(exc, traceback.format_exc())
self.finalize()