mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +02:00
[core] stats: do not break on stats errors
Watching the subprocess for statistics may create errors on windows on specific cases, it should not break the UI.
This commit is contained in:
parent
6115a81044
commit
8e141d7e58
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ class StatisticsThread(threading.Thread):
|
|||
if self.proc.is_running():
|
||||
self.updateStats()
|
||||
return
|
||||
except (KeyboardInterrupt, SystemError, GeneratorExit):
|
||||
except (KeyboardInterrupt, SystemError, GeneratorExit, psutil.NoSuchProcess):
|
||||
pass
|
||||
|
||||
def stopRequest(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue