We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04f3765 commit 074596aCopy full SHA for 074596a
1 file changed
dora_utils/launch/run.py
@@ -29,6 +29,10 @@ def run(cfg: DictConfig) -> None:
29
30
yaml_paths = []
31
for node_cfg in cfg.node_definitions.values():
32
+ # allow skipping of node definitions by setting to null when overriding configs
33
+ if node_cfg is None:
34
+ continue
35
+
36
node_name = f"tmp_{node_cfg.node_id}"
37
yaml_path = write_tmp(node_cfg, tmp_dir, node_name)
38
subprocess.Popen(f"python {Path(__file__).parent}/_launch_node.py -cp {tmp_dir} -cn {node_name}", shell=True)
0 commit comments