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) sleep(1)
# Terminated, exit loop. # Terminated, exit loop.
break # BREAK !!! break # BREAK !!!
except Empty as e: except Empty:
continue continue
except Exception as e: except Exception as exc:
self.handle_error(e, traceback.format_exc()) self.handle_error(exc, traceback.format_exc())
self.finalize() self.finalize()