Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created October 9, 2017 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcupak/20de64f0b8c7f326607612837a38997d to your computer and use it in GitHub Desktop.
Save mcupak/20de64f0b8c7f326607612837a38997d to your computer and use it in GitHub Desktop.
Increasing deployment timeout on WildFly.
...
<system-properties>
<property name="jboss.as.management.blocking.timeout" value="900"/>
</system-properties>
...
<profile>
...
<subsystem xmlns="urn:jboss:domain:deployment-scanner:2.0">
<deployment-scanner path="deployments" relative-to="jboss.server.base.dir"
scan-interval="5000" deployment-timeout="900"
runtime-failure-causes-rollback=
"${jboss.deployment.scanner.rollback.on.failure:false}"/>
</subsystem>
...
</profile>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment