From 41fc4ec64631c4044a2d77c72c302556d6083ccd Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Fri, 19 Apr 2024 23:48:50 +0300 Subject: [PATCH] Fix disabling vcs cache should not add vcs mount point to container --- clearml_agent/commands/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml_agent/commands/worker.py b/clearml_agent/commands/worker.py index cbd06c6..98c0d35 100644 --- a/clearml_agent/commands/worker.py +++ b/clearml_agent/commands/worker.py @@ -3817,7 +3817,7 @@ class Worker(ServiceCommandSection): host_pip_dl = load_path("agent.pip_download_cache.path") self.debug("host_pip_dl: {}".format(host_pip_dl)) - host_vcs_cache = load_path("agent.vcs_cache.path") + host_vcs_cache = load_path("agent.vcs_cache.path") if temp_config.get("agent.vcs_cache.enabled", True) else "" self.debug("host_vcs_cache: {}".format(host_vcs_cache)) host_venvs_cache = load_path("agent.venvs_cache.path")