Skip to content

Commit

Permalink
GH-860 Default settings/notify_about_pre-releases to false
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Jan 31, 2025
1 parent 51b5534 commit 02f0872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void OrchestratorSettings::_register_settings()
_settings.emplace_back(RESOURCE_SETTING("settings/default_type", "Object", "Node"));
_settings.emplace_back(SENUM_SETTING("settings/storage_format", "Text,Binary", "Text"));
_settings.emplace_back(SENUM_SETTING("settings/log_level", "FATAL,ERROR,WARN,INFO,DEBUG,TRACE", "INFO"));
_settings.emplace_back(BOOL_SETTING("settings/notify_about_pre-releases", true));
_settings.emplace_back(BOOL_SETTING("settings/notify_about_pre-releases", false));

_settings.emplace_back(RANGE_SETTING("settings/runtime/max_call_stack", "256,1024,256", 1024));
_settings.emplace_back(INT_SETTING("settings/runtime/max_loop_iterations", 1000000));
Expand Down

0 comments on commit 02f0872

Please sign in to comment.