We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8497a9 commit d5a5150Copy full SHA for d5a5150
psiflow/execution.py
@@ -197,7 +197,7 @@ class ExecutionContextLoader:
197
def parse_config(yaml_dict: dict):
198
definitions = []
199
200
- container_dict = yaml_dict.pop("container", None)
+ container_dict = yaml_dict.get("container", None)
201
for name in ["ModelEvaluation", "ModelTraining", "ReferenceEvaluation"]:
202
if name in yaml_dict:
203
_dict = yaml_dict.pop(name)
@@ -277,6 +277,7 @@ def parse_config(yaml_dict: dict):
277
"default_threads": 1,
278
"mode": "htex",
279
"htex_address": address_by_hostname(),
280
+ "container": None,
281
}
282
forced = {
283
"initialize_logging": False, # manual; to move parsl.log one level up
0 commit comments