Skip to content

Commit 48ff8c4

Browse files
committed
[core] taskManager: Do not start computing a CompatibilityNode
1 parent 88d592f commit 48ff8c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meshroom/core/taskManager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def run(self):
4141

4242
for nId, node in enumerate(self._manager._nodesToProcess):
4343

44-
# skip already finished/running nodes
45-
if node.isFinishedOrRunning():
44+
# Skip already finished/running nodes or nodes in compatibility mode
45+
if node.isFinishedOrRunning() or node.isCompatibilityNode:
4646
continue
4747

4848
# if a node does not exist anymore, node.chunks becomes a PySide property

0 commit comments

Comments
 (0)