mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
[processGraph] don't need to wait for the end of the statistics thread
This commit is contained in:
parent
b7d906adb7
commit
c65e5cb182
1 changed files with 2 additions and 1 deletions
|
@ -409,7 +409,8 @@ class Node:
|
||||||
self.upgradeStatusTo(Status.ERROR)
|
self.upgradeStatusTo(Status.ERROR)
|
||||||
raise
|
raise
|
||||||
statThread.running = False
|
statThread.running = False
|
||||||
statThread.join()
|
# Don't need to join, the thread will finish a bit later.
|
||||||
|
# statThread.join()
|
||||||
|
|
||||||
self.upgradeStatusTo(Status.SUCCESS)
|
self.upgradeStatusTo(Status.SUCCESS)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue