mirror of
https://github.com/clearml/clearml
synced 2025-02-12 07:35:08 +00:00
Fix PipelineController callback returning False
This commit is contained in:
parent
164fa357ed
commit
968305e09d
@ -933,9 +933,12 @@ class PipelineController(object):
|
|||||||
|
|
||||||
# update the execution graph
|
# update the execution graph
|
||||||
for name in next_nodes:
|
for name in next_nodes:
|
||||||
if self._launch_node(self._nodes[name]):
|
if self._launch_node(self._nodes[name]) and not self._nodes[name].skip_job:
|
||||||
print('Launching step: {}'.format(name))
|
print('Launching step: {}'.format(name))
|
||||||
print('Parameters:\n{}'.format(self._nodes[name].job.task_parameter_override))
|
print('Parameters:\n{}'.format(
|
||||||
|
self._nodes[name].job.task_parameter_override if self._nodes[name].job
|
||||||
|
else self._nodes[name].parameters))
|
||||||
|
print('Overrides:\n{}'.format(self._nodes[name].task_overrides))
|
||||||
self._running_nodes.append(name)
|
self._running_nodes.append(name)
|
||||||
launched_nodes.add(name)
|
launched_nodes.add(name)
|
||||||
# check if node is cached do not wait for event but run the loop again
|
# check if node is cached do not wait for event but run the loop again
|
||||||
|
Loading…
Reference in New Issue
Block a user