[processGraph] don't need to wait for the end of the statistics thread

This commit is contained in:
Fabien Castan 2017-09-21 02:13:48 +02:00
parent b7d906adb7
commit c65e5cb182

View file

@ -409,7 +409,8 @@ class Node:
self.upgradeStatusTo(Status.ERROR)
raise
statThread.running = False
statThread.join()
# Don't need to join, the thread will finish a bit later.
# statThread.join()
self.upgradeStatusTo(Status.SUCCESS)