From 0428b7c7a8a20ba8ce3072a11943207fb34c57df Mon Sep 17 00:00:00 2001 From: Jonathan Karlsen Date: Tue, 12 Mar 2024 14:22:02 +0100 Subject: [PATCH] Deprecate LSF QUEUE_OPTION LSF_SERVER --- src/ert/config/parsing/config_schema_deprecations.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ert/config/parsing/config_schema_deprecations.py b/src/ert/config/parsing/config_schema_deprecations.py index 3b9ee29956f..64689fd70df 100644 --- a/src/ert/config/parsing/config_schema_deprecations.py +++ b/src/ert/config/parsing/config_schema_deprecations.py @@ -193,4 +193,10 @@ "The ERT default is to use /usr/bin/ssh.", check=lambda line: "LSF_RSH_CMD" in line, ), + DeprecationInfo( + keyword="QUEUE_OPTION", + message="LSF_SERVER as QUEUE_OPTION to the LSF system will be removed in " + "the future, and it is not recommended to use this QUEUE_OPTION.", + check=lambda line: "LSF_SERVER" in line, + ), ]