mirror of
https://github.com/clearml/clearml
synced 2025-02-07 21:33:25 +00:00
Fix PipelineController running remotely without configuration does not execute the default code pipeline (issue #273)
This commit is contained in:
parent
35a8471943
commit
5608b7238c
@ -135,7 +135,7 @@ class PipelineController(object):
|
|||||||
:return: True if successful
|
:return: True if successful
|
||||||
"""
|
"""
|
||||||
# when running remotely do nothing, we will deserialize ourselves when we start
|
# when running remotely do nothing, we will deserialize ourselves when we start
|
||||||
if self._task and not self._task.running_locally() and self._task.is_main_task():
|
if self._has_stored_configuration():
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if name in self._nodes:
|
if name in self._nodes:
|
||||||
@ -340,6 +340,16 @@ class PipelineController(object):
|
|||||||
"""
|
"""
|
||||||
self._nodes = {k: self.Node(name=k, **v) for k, v in dag_dict.items()}
|
self._nodes = {k: self.Node(name=k, **v) for k, v in dag_dict.items()}
|
||||||
|
|
||||||
|
def _has_stored_configuration(self):
|
||||||
|
"""
|
||||||
|
Return True if we are running remotely and we have stored configuration on the Task
|
||||||
|
"""
|
||||||
|
if self._task and not self._task.running_locally() and self._task.is_main_task():
|
||||||
|
stored_config = self._task.get_configuration_object(self._config_section)
|
||||||
|
return bool(stored_config)
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
def _verify(self):
|
def _verify(self):
|
||||||
# type: () -> bool
|
# type: () -> bool
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user