Skip to content

Commit

Permalink
Propegate correct queue information
Browse files Browse the repository at this point in the history
  • Loading branch information
frode-aarstad committed Feb 11, 2025
1 parent b65af53 commit 44a9dda
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ert/run_models/everest_run_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,12 @@ def __init__(
config_file: Path = Path(everest_config.config_file)

model_config = ModelConfig.from_dict(config_dict)

queue_config = QueueConfig.from_dict(config_dict)
assert everest_config.simulator is not None
assert everest_config.simulator.queue_system is not None
queue_config.queue_options = everest_config.simulator.queue_system
queue_config.queue_system = everest_config.simulator.queue_system.name

ensemble_config = EnsembleConfig.from_dict(config_dict)

Expand Down

0 comments on commit 44a9dda

Please sign in to comment.