Skip to content

Commit 59caf07

Browse files
[TEST] Certificate NONE not allowed in FIPS JVM (#32753)
Certificate NONE not allowed when running in a FIPS JVM
1 parent 1de8244 commit 59caf07

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

x-pack/plugin/monitoring/src/test/java/org/elasticsearch/xpack/monitoring/exporter/http/HttpExporterSslIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ public void testCanUpdateSslSettingsWithNoSecureSettings() {
134134
clearTransientSettings("plaintext");
135135
}
136136

137-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/32673")
138137
public void testCanAddNewExporterWithSsl() {
139138
Path truststore = getDataPath("/org/elasticsearch/xpack/monitoring/exporter/http/testnode.jks");
140139
assertThat(Files.exists(truststore), CoreMatchers.is(true));
@@ -145,7 +144,7 @@ public void testCanAddNewExporterWithSsl() {
145144
.put("xpack.monitoring.exporters._new.host", "https://" + webServer.getHostName() + ":" + webServer.getPort())
146145
.put("xpack.monitoring.exporters._new.ssl.truststore.path", truststore)
147146
.put("xpack.monitoring.exporters._new.ssl.truststore.password", "testnode")
148-
.put("xpack.monitoring.exporters._new.ssl.verification_mode", VerificationMode.NONE.name())
147+
.put("xpack.monitoring.exporters._new.ssl.verification_mode", VerificationMode.CERTIFICATE.name())
149148
.build();
150149
updateSettings.transientSettings(settings);
151150
final ActionFuture<ClusterUpdateSettingsResponse> future = client().admin().cluster().updateSettings(updateSettings);

0 commit comments

Comments
 (0)