Skip to content

Commit 88d592f

Browse files
committed
[core] graph: Do not start computing a CompatibilityNode
1 parent b49ad0d commit 88d592f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

meshroom/core/graph.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,6 +1665,11 @@ def executeGraph(graph, toNodes=None, forceCompute=False, forceStatus=False):
16651665

16661666
for n, node in enumerate(nodes):
16671667
try:
1668+
# If the node is in compatibility mode, it cannot be computed
1669+
if node.isCompatibilityNode:
1670+
logging.warning(f"{node.name} is in Compatibility Mode and cannot be computed: {node.issueDetails}.")
1671+
continue
1672+
16681673
node.preprocess()
16691674
multiChunks = len(node.chunks) > 1
16701675
for c, chunk in enumerate(node.chunks):

0 commit comments

Comments
 (0)