From c65e5cb182c0e3c293cfcc84fc15d57220d964b6 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Thu, 21 Sep 2017 02:13:48 +0200 Subject: [PATCH] [processGraph] don't need to wait for the end of the statistics thread --- meshroom/processGraph/graph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meshroom/processGraph/graph.py b/meshroom/processGraph/graph.py index 31d7461e..dc6247b2 100644 --- a/meshroom/processGraph/graph.py +++ b/meshroom/processGraph/graph.py @@ -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)