Skip to content

Commit b0a6956

Browse files
committed
Skip FIPS JVMs in testReloadCredentialsFromKeystore (elastic#116814)
This test doesn't need to run in FIPS mode, and apparently it fails sometimes, so with this commit we skip it. Closes elastic#116811 (cherry picked from commit ea90fbc) # Conflicts: # muted-tests.yml
1 parent ca01a9a commit b0a6956

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)