Skip to content

Commit d3d7f74

Browse files
[Backport 2.19] Fix ssl hot reload settings (#5117)
Signed-off-by: Andrey Pleskach <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 17d2c12 commit d3d7f74

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2065,6 +2065,14 @@ public List<Setting<?>> getSettings() {
20652065
Setting.boolSetting(ConfigConstants.SECURITY_UNSUPPORTED_LOAD_STATIC_RESOURCES, true, Property.NodeScope, Property.Filtered)
20662066
);
20672067
settings.add(Setting.boolSetting(SECURITY_SSL_CERT_RELOAD_ENABLED, false, Property.NodeScope, Property.Filtered));
2068+
settings.add(
2069+
Setting.boolSetting(
2070+
ConfigConstants.SECURITY_SSL_CERTIFICATES_HOT_RELOAD_ENABLED,
2071+
false,
2072+
Property.NodeScope,
2073+
Property.Filtered
2074+
)
2075+
);
20682076
settings.add(
20692077
Setting.boolSetting(
20702078
ConfigConstants.SECURITY_UNSUPPORTED_ACCEPT_INVALID_CONFIG,

0 commit comments

Comments
 (0)