mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-05 12:21:59 +02:00
[core] Node: avoid submitting already running nodes
This commit is contained in:
parent
5d63d02a33
commit
11bf6821ae
1 changed files with 1 additions and 1 deletions
|
@ -794,7 +794,7 @@ class BaseNode(BaseObject):
|
|||
|
||||
def beginSequence(self, forceCompute=False):
|
||||
for chunk in self._chunks:
|
||||
if forceCompute or chunk.status.status != Status.SUCCESS:
|
||||
if forceCompute or (chunk.status.status not in (Status.RUNNING, Status.SUCCESS)):
|
||||
chunk.upgradeStatusTo(Status.SUBMITTED, ExecMode.LOCAL)
|
||||
|
||||
def processIteration(self, iteration):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue