Skip to content

Commit

Permalink
Skip FIPS JVMs in testReloadCredentialsFromKeystore (#116814) (#117100
Browse files Browse the repository at this point in the history
)

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]>
  • Loading branch information
ywangd and DaveCTurner authored Nov 19, 2024
1 parent ca01a9a commit 18fe9d5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ protected String getTestRestCluster() {
}

public void testReloadCredentialsFromKeystore() throws IOException {
assumeFalse("doesn't work in a FIPS JVM, but that's ok", inFipsJvm());

// Register repository (?verify=false because we don't have access to the blob store yet)
final var repositoryName = randomIdentifier();
registerRepository(
Expand Down

0 comments on commit 18fe9d5

Please sign in to comment.