Last active
July 20, 2023 17:17
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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