Skip to content

Commit

Permalink
Per #1673, enable beta_value to be set to a default bad data value.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jul 8, 2021
1 parent b3bbc0f commit 69f82df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion met/src/tools/core/grid_stat/grid_stat_conf_info.cc
Expand Up @@ -818,7 +818,7 @@ void GridStatVxOpt::process_config(
}

beta_value = d->lookup_double(conf_key_beta_value);
if(beta_value <=0) {
if(!is_bad_data(beta_value) && beta_value <=0) {
mlog << Error << "\nGridStatVxOpt::process_config() -> "
<< "The \"" << conf_key_beta_value << "\" option ("
<< beta_value << ") must be set > 0.\n\n";
Expand Down

0 comments on commit 69f82df

Please sign in to comment.