Skip to content

Commit

Permalink
[Backport 2.x] Fix ssl hot reload settings (opensearch-project#5118)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Pleskach <[email protected]>
  • Loading branch information
willyborankin authored Feb 19, 2025
1 parent e4b69ae commit 68eeb65
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2065,6 +2065,14 @@ public List<Setting<?>> getSettings() {
Setting.boolSetting(ConfigConstants.SECURITY_UNSUPPORTED_LOAD_STATIC_RESOURCES, true, Property.NodeScope, Property.Filtered)
);
settings.add(Setting.boolSetting(SECURITY_SSL_CERT_RELOAD_ENABLED, false, Property.NodeScope, Property.Filtered));
settings.add(
Setting.boolSetting(
ConfigConstants.SECURITY_SSL_CERTIFICATES_HOT_RELOAD_ENABLED,
false,
Property.NodeScope,
Property.Filtered
)
);
settings.add(
Setting.boolSetting(
ConfigConstants.SECURITY_UNSUPPORTED_ACCEPT_INVALID_CONFIG,
Expand Down

0 comments on commit 68eeb65

Please sign in to comment.