Commit 467a4b26 authored by Saul Ibarra's avatar Saul Ibarra

Added a 60 second timeout to the reactor thread join on shutdown

parent 8dd18466
......@@ -88,7 +88,8 @@ class Blink(QApplication):
self.exec_()
self.update_manager.shutdown()
self.application.stop()
self.application.thread.join()
# TODO: timeout should be removed when the Engine is fixed so that it never hangs. -Saul
self.application.thread.join(60.0)
log_manager = LogManager()
log_manager.stop()
......
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