You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We noticed that DefaultReadinessProcedureHealthTest always fails on Oracle JDKs.
This is because the maven-surefire-plugin execution order seems to be deterministically not alphabetical there, causing MultiDeploymentHealthTest being executed right before DefaultReadinessProcedureHealthTest.
This condition is the root cause for the failure, and specifically because of https://issues.redhat.com/browse/WFLY-20325, which the MultiDeploymentHealthTest creates the condition for.
A workaround, i.e. set the runOrder property of the maven-surefire-plugin to alphabetical, is needed to make the failure disappear, until https://issues.redhat.com/browse/WFLY-20325 is solved.
The text was updated successfully, but these errors were encountered:
We noticed that
DefaultReadinessProcedureHealthTest
always fails on Oracle JDKs.This is because the
maven-surefire-plugin
execution order seems to be deterministically not alphabetical there, causingMultiDeploymentHealthTest
being executed right beforeDefaultReadinessProcedureHealthTest
.This condition is the root cause for the failure, and specifically because of https://issues.redhat.com/browse/WFLY-20325, which the
MultiDeploymentHealthTest
creates the condition for.A workaround, i.e. set the
runOrder
property of themaven-surefire-plugin
toalphabetical
, is needed to make the failure disappear, until https://issues.redhat.com/browse/WFLY-20325 is solved.The text was updated successfully, but these errors were encountered: