=clt #18440 Harden ClusterClientSpec again

The fix in https://github.com/akka/akka/pull/17903 was not using
the correct configuration property. The issue in #17735 was never
fixed by that PR, but now it is.
This commit is contained in:
Patrik Nordwall 2015-09-18 09:27:19 +02:00
parent 2cd834da9d
commit 92e9972d54

View file

@ -39,7 +39,7 @@ object ClusterClientSpec extends MultiNodeConfig {
akka.cluster.client.heartbeat-interval = 1s akka.cluster.client.heartbeat-interval = 1s
akka.cluster.client.acceptable-heartbeat-pause = 3s akka.cluster.client.acceptable-heartbeat-pause = 3s
# number-of-contacts must be >= 4 because we shutdown all but one in the end # number-of-contacts must be >= 4 because we shutdown all but one in the end
akka.cluster.client.number-of-contacts = 4 akka.cluster.client.receptionist.number-of-contacts = 4
akka.test.filter-leeway = 10s akka.test.filter-leeway = 10s
""")) """))