We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c191782 commit ea83b1aCopy full SHA for ea83b1a
ads/opctl/conda/cmds.py
@@ -80,7 +80,7 @@ def _check_job_image_exists(gpu: bool) -> None:
80
def _get_name(name: str, env_file: str) -> str:
81
if not name and env_file:
82
with open(env_file) as f:
83
- name = yaml.safe_load(f.read()).get("name", None)
+ name = yaml.safe_load(f.read()).get("manifest").get("name", None)
84
if not name:
85
raise ValueError(
86
"Either specify environment name in environment yaml or with `--name`."
0 commit comments