Skip to content

Commit b54166e

Browse files
committed
expanded hash graph error message to include final values/hashes of problematic nodes
1 parent 1263f5a commit b54166e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pydra/engine/submitter.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,11 @@ async def expand_workflow(self, wf, rerun=False):
192192
msg += f"- '{task.name}' node blocked due to\n"
193193
for pred in waiting_on:
194194
if pred.checksum != graph_checksums[pred.name]:
195-
msg += f" - hash changes in '{pred.name}' node inputs\n"
195+
msg += (
196+
f" - hash changes in '{pred.name}' node inputs. "
197+
f"Current values and hashes: {pred.inputs}, "
198+
f"{pred.inputs._hashes}\n"
199+
)
196200
elif pred not in outstanding:
197201
msg += (
198202
f" - undiagnosed issues in '{pred.name}' node "

0 commit comments

Comments
 (0)