Skip to content

Instantly share code, notes, and snippets.

@mcupak
Last active July 20, 2023 17:17
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mcupak/852a3f8762a2cee6f5aeb95b3c0621e4 to your computer and use it in GitHub Desktop.
Save mcupak/852a3f8762a2cee6f5aeb95b3c0621e4 to your computer and use it in GitHub Desktop.
Increasing deployment timeout on WildFly - https://mirocupak.com/enabling-long-deployments-on-wildfly/
# Script for increasing deployment-related timeouts on WildFly to 15 minutes.
# Run with: $WILDFLY_HOME/bin/jboss-cli.sh --connect --file=deployment-timeout.cli
batch
/system-property=jboss.as.management.blocking.timeout:add(value=900)
/subsystem=deployment-scanner/scanner=default:write-attribute(name=deployment-timeout,value=900)
run-batch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment