Skip to content

Commit e189796

Browse files
committed
Revert "Suppress Wildfly test in FIPS JVMs (#32543)"
The required gradle property does not exist in this branch. This reverts commit 90ffcd3.
1 parent 90ffcd3 commit e189796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qa/wildfly/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ task deploy(type: Copy) {
8484
}
8585

8686
task writeElasticsearchProperties {
87-
onlyIf { !Os.isFamily(Os.FAMILY_WINDOWS) && !inFipsJvm }
87+
onlyIf { !Os.isFamily(Os.FAMILY_WINDOWS) }
8888
dependsOn 'integTestCluster#wait', deploy
8989
doLast {
9090
final File elasticsearchProperties = file("${wildflyInstall}/standalone/configuration/elasticsearch.properties")
@@ -177,7 +177,7 @@ task stopWildfly(type: LoggedExec) {
177177
commandLine "${wildflyInstall}/bin/jboss-cli.sh", "--controller=localhost:${-> managementPort}", "--connect", "command=shutdown"
178178
}
179179

180-
if (!Os.isFamily(Os.FAMILY_WINDOWS) && !inFipsJvm) {
180+
if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
181181
integTestRunner.dependsOn(configureTransportClient)
182182
final TaskExecutionAdapter logDumpListener = new TaskExecutionAdapter() {
183183
@Override

0 commit comments

Comments
 (0)