Skip to content

Commit a2a5e16

Browse files
Fix ssl hot reload settings (opensearch-project#5116)
Signed-off-by: Andrey Pleskach <ples@aiven.io>
1 parent 5c3f921 commit a2a5e16

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/org/opensearch/security/OpenSearchSecurityPlugin.java

+8
Original file line numberDiff line numberDiff line change
@@ -2046,6 +2046,14 @@ public List<Setting<?>> getSettings() {
20462046
settings.add(
20472047
Setting.boolSetting(ConfigConstants.SECURITY_SSL_CERT_RELOAD_ENABLED, false, Property.NodeScope, Property.Filtered)
20482048
);
2049+
settings.add(
2050+
Setting.boolSetting(
2051+
ConfigConstants.SECURITY_SSL_CERTIFICATES_HOT_RELOAD_ENABLED,
2052+
false,
2053+
Property.NodeScope,
2054+
Property.Filtered
2055+
)
2056+
);
20492057
settings.add(
20502058
Setting.boolSetting(
20512059
ConfigConstants.SECURITY_UNSUPPORTED_ACCEPT_INVALID_CONFIG,

0 commit comments

Comments
 (0)