Skip to content

Commit 2012c35

Browse files
committed
fix yaml merge
1 parent cf3539e commit 2012c35

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/pymc_server/commands/launch_cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def launch_2(
420420
no_setup=no_setup,
421421
clone_disk_from=clone_disk_from)
422422

423-
click.secho(f'{colorama.Fore.YELLOW}new cluster'
423+
click.secho(f'{colorama.Fore.YELLOW}new cluster: '
424424
f'{colorama.Style.RESET_ALL}{cluster_name}')
425425

426426

@@ -484,7 +484,6 @@ def _make_task_or_dag_from_entrypoint_with_overrides(
484484
fg='yellow',
485485
nl=False)
486486
click.secho(entrypoint, bold=True)
487-
488487
override_params = _parse_override_params(cloud=cloud,
489488
region=region,
490489
zone=zone,

src/pymc_server/utils/yaml.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ def merge_yaml(user_config_path, pymc_path):
2727
)
2828
```
2929
"""
30-
merged_yaml = hiyapyco.load(pymc_path, user_config_path, method=hiyapyco.METHOD_MERGE)
30+
31+
merged_yaml = hiyapyco.load(pymc_path, user_config_path)
32+
3133
return hiyapyco.dump(merged_yaml)
3234

3335
def getUserYaml(path):

0 commit comments

Comments
 (0)