Skip to content

Commit

Permalink
Make sure that queue_value is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed Nov 1, 2023
1 parent 46aad85 commit 4da1bba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ert/config/queue_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ def _validate_queue_driver_settings(
) -> None:
for option_strings in queue_system_options:
option_name = option_strings[0]
option_value = option_strings[1]
# this might come as a number already
option_value = str(option_strings[1])
if option_value == "": # This is equivalent to the option not being set
continue
if (
Expand Down

0 comments on commit 4da1bba

Please sign in to comment.