Use synchronized Wildfly shutdown
We need to use the variant of shutdown that blocks until the connection to Wildfly is closed or we can get spurious build failures.
This commit is contained in:
parent
a0f50e8aa4
commit
99262e26a0
|
@ -36,7 +36,7 @@ final String wildflyInstall = "${buildDir}/wildfly/wildfly-${wildflyVersion}"
|
|||
final int portOffset = 30000
|
||||
final int managementPort = 9990 + portOffset
|
||||
// we skip these tests on Windows so we do not need to worry about compatibility here
|
||||
final String stopWildflyCommand = "${wildflyInstall}/bin/jboss-cli.sh --controller=localhost:${managementPort} --connect command=:shutdown"
|
||||
final String stopWildflyCommand = "${wildflyInstall}/bin/jboss-cli.sh --controller=localhost:${managementPort} --connect command=shutdown"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
|
Loading…
Reference in New Issue