Skip to content

Commit

Permalink
Fix ssl hot reload settings (opensearch-project#5116)
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 5c3f921 commit a2a5e16
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2046,6 +2046,14 @@ public List<Setting<?>> getSettings() {
settings.add(
Setting.boolSetting(ConfigConstants.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 a2a5e16

Please sign in to comment.