Skip to content

Commit

Permalink
Downgrade Wildfly to work around basic auth bug
Browse files Browse the repository at this point in the history
As described in https://issues.redhat.com/browse/WFLY-15478, Wildfly
25.0.0.Final rejects all requests that use basic auth with a 401
response. 25.0.0.Final is, at the time of writing, the latest available
Wildfly Docker image so we need to downgrade to 24.0.0.Final.

Closes gh-28956
  • Loading branch information
wilkinsona committed Dec 9, 2021
1 parent 770e509 commit 8a3fbed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
class WildflyDeploymentTests extends AbstractDeploymentTests {

@Container
static WarDeploymentContainer container = new WarDeploymentContainer("jboss/wildfly:latest",
static WarDeploymentContainer container = new WarDeploymentContainer("jboss/wildfly:24.0.0.Final",
"/opt/jboss/wildfly/standalone/deployments", DEFAULT_PORT);

@Override
Expand Down

0 comments on commit 8a3fbed

Please sign in to comment.