From 61a0d058ea65bf991e1992208963c4a86ff413c0 Mon Sep 17 00:00:00 2001 From: DanSava Date: Tue, 7 Jan 2025 12:10:21 +0200 Subject: [PATCH] Add deprecation warning for SIMULATION_JOB keyword --- 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 5198f5da06f..689f7228bc3 100644 --- a/src/ert/config/parsing/config_schema_deprecations.py +++ b/src/ert/config/parsing/config_schema_deprecations.py @@ -188,4 +188,10 @@ check=lambda line: "LSF_RESOURCE" in line and "mem=" in cast(list[str], line)[-1], ), + DeprecationInfo( + keyword="SIMULATION_JOB", + message="The SIMULATION_JOB keyword has been removed and no longer has any " + "effect. It has been used in the as a lightweight alternative of " + "FORWARD_MODEL. Please use FORWARD_MODEL keyword instead.", + ), ]