mirror of
https://github.com/clearml/clearml
synced 2025-01-31 00:56:57 +00:00
Fix hierarchy for pipeline nodes without args
This commit is contained in:
parent
2b66ee663e
commit
1b474dc0b0
@ -4805,11 +4805,11 @@ class PipelineDecorator(PipelineController):
|
||||
if n not in _node.parents:
|
||||
_node.parents.append(n)
|
||||
break
|
||||
if kwargs:
|
||||
leaves = cls._singleton._find_executed_node_leaves()
|
||||
_node.parents = (_node.parents or []) + [
|
||||
x for x in cls._evaluated_return_values.get(tid, []) if x in leaves
|
||||
]
|
||||
|
||||
leaves = cls._singleton._find_executed_node_leaves()
|
||||
_node.parents = (_node.parents or []) + [
|
||||
x for x in cls._evaluated_return_values.get(tid, []) if x in leaves
|
||||
]
|
||||
|
||||
if not cls._singleton._abort_running_steps_on_failure:
|
||||
for parent in _node.parents:
|
||||
|
Loading…
Reference in New Issue
Block a user