Skip to content

Commit 18fe9d5

Browse files
ywangdDaveCTurner
andauthored
Skip FIPS JVMs in testReloadCredentialsFromKeystore (#116814) (#117100)
This test doesn't need to run in FIPS mode, and apparently it fails sometimes, so with this commit we skip it. Closes #116811 (cherry picked from commit ea90fbc) # Conflicts: # muted-tests.yml Co-authored-by: David Turner <[email protected]>
1 parent ca01a9a commit 18fe9d5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ protected String getTestRestCluster() {
5252
}
5353

5454
public void testReloadCredentialsFromKeystore() throws IOException {
55+
assumeFalse("doesn't work in a FIPS JVM, but that's ok", inFipsJvm());
56+
5557
// Register repository (?verify=false because we don't have access to the blob store yet)
5658
final var repositoryName = randomIdentifier();
5759
registerRepository(

0 commit comments

Comments
 (0)