From 4da1bbab0d8673a02d6f3c0fd272a5f978d9f3c7 Mon Sep 17 00:00:00 2001 From: xjules Date: Wed, 1 Nov 2023 16:24:11 +0100 Subject: [PATCH] Make sure that queue_value is a string --- src/ert/config/queue_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ert/config/queue_config.py b/src/ert/config/queue_config.py index 1b06581d362..24936debf6a 100644 --- a/src/ert/config/queue_config.py +++ b/src/ert/config/queue_config.py @@ -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 (