Skip to content

Commit ea90fbc

Browse files
authored
Skip FIPS JVMs in testReloadCredentialsFromKeystore (#116814)
This test doesn't need to run in FIPS mode, and apparently it fails sometimes, so with this commit we skip it. Closes #116811
1 parent 9296fb4 commit ea90fbc

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

modules/repository-s3/src/javaRestTest/java/org/elasticsearch/repositories/s3/RepositoryS3RestIT.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ protected String getTestRestCluster() {
5151
return cluster.getHttpAddresses();
5252
}
5353

54-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/116811")
5554
public void testReloadCredentialsFromKeystore() throws IOException {
55+
assumeFalse("doesn't work in a FIPS JVM, but that's ok", inFipsJvm());
56+
5657
// Register repository (?verify=false because we don't have access to the blob store yet)
5758
final var repositoryName = randomIdentifier();
5859
registerRepository(

muted-tests.yml

-3
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,6 @@ tests:
217217
- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT
218218
method: test {p0=synonyms/90_synonyms_reloading_for_synset/Reload analyzers for specific synonym set}
219219
issue: https://github.com/elastic/elasticsearch/issues/116777
220-
- class: org.elasticsearch.repositories.s3.RepositoryS3RestIT
221-
method: testReloadCredentialsFromKeystore
222-
issue: https://github.com/elastic/elasticsearch/issues/116811
223220
- class: org.elasticsearch.xpack.searchablesnapshots.hdfs.SecureHdfsSearchableSnapshotsIT
224221
issue: https://github.com/elastic/elasticsearch/issues/116851
225222
- class: org.elasticsearch.xpack.esql.analysis.VerifierTests

0 commit comments

Comments
 (0)