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

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:

#   Timeout, sec
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:
Andrius Dagys 2018-06-13 17:46:32 +01:00 committed by GitHub
parent 026a4864b1
commit 0056a2232c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,6 @@ rpcSettings = {
}
flowTimeout {
timeout = 30 seconds
maxRestartCount = 3
backoffBase = 2.0
maxRestartCount = 5
backoffBase = 1.8
}