From 055283d898b0e747d6ccdf5ad7a34301fd828f7a Mon Sep 17 00:00:00 2001 From: mh0g Date: Wed, 26 Oct 2022 12:15:41 +0200 Subject: [PATCH 1/2] added an explicit debug message for missing nodes --- meshroom/core/node.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshroom/core/node.py b/meshroom/core/node.py index 2a175648..6bcbf7a1 100644 --- a/meshroom/core/node.py +++ b/meshroom/core/node.py @@ -408,6 +408,8 @@ class NodeChunk(BaseObject): self.statThread = stats.StatisticsThread(self) self.statThread.start() try: + if self.node.nodeDesc is None: + raise RuntimeError("Node description empty. This could be coming from a wrong MESHROOM_NODES_PATH environement variable.") self.node.nodeDesc.processChunk(self) except Exception as e: if self._status.status != Status.STOPPED: From 74b6a3ace23a525f1f7ace56844fcbba410cb286 Mon Sep 17 00:00:00 2001 From: mh0g Date: Wed, 26 Oct 2022 12:27:15 +0200 Subject: [PATCH 2/2] fixed typo --- meshroom/core/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/core/node.py b/meshroom/core/node.py index 6bcbf7a1..724ce71c 100644 --- a/meshroom/core/node.py +++ b/meshroom/core/node.py @@ -409,7 +409,7 @@ class NodeChunk(BaseObject): self.statThread.start() try: if self.node.nodeDesc is None: - raise RuntimeError("Node description empty. This could be coming from a wrong MESHROOM_NODES_PATH environement variable.") + raise RuntimeError("Node description empty. This could be coming from a wrong MESHROOM_NODES_PATH environment variable.") self.node.nodeDesc.processChunk(self) except Exception as e: if self._status.status != Status.STOPPED: