CORDA-1628 - Increase max restart count for notary client flows. (#3357) (#3603)

This will ensure that the notary client flow will retry over a sufficient
period of time for the notary to update its network map.

With a backoff base of 1.8 and 5 retries the last retry will fire after
about 20 min 8 sec of the initial flow start:

0	30
1	54
2	97.2
3	174.96
4	314.928
5	566.8704

Total 1207.9584	= 20.13264 min
This commit is contained in:
Katelyn Baker 2018-07-13 18:13:41 +01:00 committed by GitHub
parent 5772208c7c
commit c73647b4fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,4 +27,9 @@ activeMQServer = {
rpcSettings = {
useSsl = false
standAloneBroker = false
}
}
flowTimeout {
timeout = 30 seconds
maxRestartCount = 5
backoffBase = 1.8
}