Hello,
I have a problem with creating projects using "get_or_create_project".
The function fails when the project already exists.
But the name of the function clearly indicates that it should not fail when the project already exists.
Follows is the message log.
Can someone please help?
2021-07-13 01:11:03,629 - clearml.Task - ERROR - Action failed <400/801: projects.create/v1.0 (Value combination already exists: name=Remote/rdekel/hackathon_baselines/DATA_DIR, company=1)> (name=Remote/rdekel/hackathon_baselines/DATA_DIR/, description=) Traceback (most recent call last): File "/Remote/rdekel/hackathon_baselines/PYDL_HACKATHON/engines/shared/regression/regression.py", line 98, in <module> run_regression(regression_config) File "/Remote/rdekel/hackathon_baselines/PYDL_HACKATHON/engines/shared/regression/regression.py", line 29, in run_regression jobManager(jobs).run_jobs() File "/Remote/rdekel/hackathon_baselines/PYDL_HACKATHON/engines/shared/regression/clearml_job_manager.py", line 299, in run_jobs self._init_jobs() File "/Remote/rdekel/hackathon_baselines/PYDL_HACKATHON/engines/shared/regression/clearml_job_manager.py", line 227, in _init_jobs task_type=Task.TaskTypes.controller, reuse_last_task_id=False) File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/task.py", line 496, in init auto_connect_streams=auto_connect_streams, File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/task.py", line 2530, in _create_dev_task log_to_backend=True, File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/task.py", line 163, in __init__ super(Task, self).__init__(**kwargs) File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/backend_interface/task/task.py", line 167, in __init__ self.id = self._auto_generate(project_name=project_name, task_name=task_name, task_type=task_type) File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/backend_interface/task/task.py", line 314, in _auto_generate project_id = get_or_create_project(self, project_name) File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/backend_interface/util.py", line 59, in get_or_create_project res = session.send(projects.CreateRequest(name=project_name, description=description or '')) File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/backend_interface/base.py", line 96, in send log=self.log, async_enable=async_enable) File "/Remote/shared/conda_envs/tf15_tp011/lib/python3.7/site-packages/clearml/backend_interface/base.py", line 89, in _send raise SendError(res, error_msg) clearml.backend_interface.session.SendError: Action failed <400/801: projects.create/v1.0 (Value combination already exists: name=Remote/rdekel/hackathon_baselines/DATA_DIR, company=1)> (name=Remote/rdekel/hackathon_baselines/DATA_DIR/, description=)