We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CompatibilityNode
1 parent 88d592f commit 48ff8c4Copy full SHA for 48ff8c4
meshroom/core/taskManager.py
@@ -41,8 +41,8 @@ def run(self):
41
42
for nId, node in enumerate(self._manager._nodesToProcess):
43
44
- # skip already finished/running nodes
45
- if node.isFinishedOrRunning():
+ # Skip already finished/running nodes or nodes in compatibility mode
+ if node.isFinishedOrRunning() or node.isCompatibilityNode:
46
continue
47
48
# if a node does not exist anymore, node.chunks becomes a PySide property
0 commit comments