Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Deprecate STD_SCALE_CORRELATED_OBS
Browse files Browse the repository at this point in the history
  • Loading branch information
jepebe authored and sondreso committed Sep 24, 2020
1 parent c9f0d8b commit f17ca13
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/enkf/analysis_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,14 @@ void analysis_config_add_config_items( config_parser_type * config ) {
config_add_key_value( config , UPDATE_LOG_PATH_KEY , false , CONFIG_STRING);
config_add_key_value( config , MIN_REALIZATIONS_KEY , false , CONFIG_STRING );
config_add_key_value( config , MAX_RUNTIME_KEY , false , CONFIG_INT );
config_add_key_value( config , STD_SCALE_CORRELATED_OBS_KEY, false , CONFIG_BOOL );

config_add_key_value(config, STD_SCALE_CORRELATED_OBS_KEY, false, CONFIG_BOOL);
config_parser_deprecate(
config,
STD_SCALE_CORRELATED_OBS_KEY,
"STD_SCALE_CORRELATED_OBS is deprecated. "
"Use the AUTO_SCALE workflow instead."
);

item = config_add_key_value( config , STOP_LONG_RUNNING_KEY, false, CONFIG_BOOL );
stringlist_type * child_list = stringlist_alloc_new();
Expand Down

0 comments on commit f17ca13

Please sign in to comment.