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.
1 parent a845c1f commit 9cf2f61Copy full SHA for 9cf2f61
services/director-v2/src/simcore_service_director_v2/utils/dags.py
@@ -60,7 +60,7 @@ def _node_outdated(full_dag_graph: nx.DiGraph, node_id: NodeID) -> bool:
60
if output_port is None:
61
return True
62
# ok so we have outputs, but maybe the inputs are old? let's check recursively
63
- for input_port in node["inputs"]:
+ for input_port in node["inputs"].values():
64
if isinstance(input_port, PortLink):
65
if is_node_dirty(full_dag_graph, input_port.node_uuid):
66
0 commit comments