Skip to content

Commit

Permalink
Set startStopTimeout to be configurable (#1594)
Browse files Browse the repository at this point in the history
* Set startStopTimeout to be configurable

* Convert timeout argument to int
  • Loading branch information
achasveachas committed Jul 2, 2021
1 parent 41be72e commit c6ec6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ cargo {

local {
configHomeDir = file(Paths.get(System.getProperty("java.io.tmpdir") + "/uaa-${applicationPort}"))
startStopTimeout = 540000
startStopTimeout = Integer.parseInt(System.getProperty("startStopTimeout", "540000"))
rmiPort = applicationPort + 10

jvmArgs = ""
Expand Down

0 comments on commit c6ec6ec

Please sign in to comment.