mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[ui] add node computation on error status
This commit is contained in:
parent
e556f4f276
commit
a29061efd5
2 changed files with 3 additions and 2 deletions
|
@ -412,6 +412,7 @@ class NodeChunk(BaseObject):
|
|||
self.node.nodeDesc.processChunk(self)
|
||||
except Exception as e:
|
||||
if self._status.status != Status.STOPPED:
|
||||
self._status.elapsedTime = time.time() - startTime
|
||||
self.upgradeStatusTo(Status.ERROR)
|
||||
raise
|
||||
except (KeyboardInterrupt, SystemError, GeneratorExit) as e:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue