mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
I set the max retry time for AMQP at 5 minutes. This is just too long for any kind of sensible testing, so drop back to 1 minute. (#3294)
This commit is contained in:
parent
7bf6608c8e
commit
d86ae5fc0b
@ -51,7 +51,7 @@ class AMQPClient(val targets: List<NetworkHostAndPort>,
|
||||
|
||||
val log = contextLogger()
|
||||
const val MIN_RETRY_INTERVAL = 1000L
|
||||
const val MAX_RETRY_INTERVAL = 300000L
|
||||
const val MAX_RETRY_INTERVAL = 60000L
|
||||
const val BACKOFF_MULTIPLIER = 2L
|
||||
const val NUM_CLIENT_THREADS = 2
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user