Skip to content

Commit 116ac8c

Browse files
committed
Skip FIPS JVMs in testReloadCredentialsFromKeystore
This test doesn't need to run in FIPS mode, and apparently it fails sometimes, so with this commit we skip it. Closes #116811 Backport of #116814 to 8.x
1 parent 23f9726 commit 116ac8c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
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(

0 commit comments

Comments
 (0)