Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions meshroom/core/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -1603,6 +1603,11 @@ def updateLocked(self):
return

if currentStatus == Status.SUCCESS:
# Update the status when the lock is reevaluated while the node is
# successfully computed: this ensures all info reflect accurately the status
# (in particular with respect to dynamic output attributes)
self.updateStatusFromCache()

# At this moment, the node is necessarily locked because of previous if statement
inputNodes = self.getInputNodes(recursive=True, dependenciesOnly=True)
outputNodes = self.getOutputNodes(recursive=True, dependenciesOnly=True)
Expand Down