Change auto-down default to off, see #2304
This commit is contained in:
parent
b92e22acda
commit
63d6ac2a7e
2 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ akka {
|
||||||
# Should the 'leader' in the cluster be allowed to automatically mark unreachable nodes as DOWN?
|
# Should the 'leader' in the cluster be allowed to automatically mark unreachable nodes as DOWN?
|
||||||
# Using auto-down implies that two separate clusters will automatically be formed in case of
|
# Using auto-down implies that two separate clusters will automatically be formed in case of
|
||||||
# network partition.
|
# network partition.
|
||||||
auto-down = on
|
auto-down = off
|
||||||
|
|
||||||
# the number of gossip daemon actors
|
# the number of gossip daemon actors
|
||||||
nr-of-gossip-daemons = 4
|
nr-of-gossip-daemons = 4
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ class ClusterConfigSpec extends AkkaSpec {
|
||||||
JoinTimeout must be(60 seconds)
|
JoinTimeout must be(60 seconds)
|
||||||
NrOfGossipDaemons must be(4)
|
NrOfGossipDaemons must be(4)
|
||||||
AutoJoin must be(true)
|
AutoJoin must be(true)
|
||||||
AutoDown must be(true)
|
AutoDown must be(false)
|
||||||
GossipDifferentViewProbability must be(0.8 plusOrMinus 0.0001)
|
GossipDifferentViewProbability must be(0.8 plusOrMinus 0.0001)
|
||||||
SchedulerTickDuration must be(33 millis)
|
SchedulerTickDuration must be(33 millis)
|
||||||
SchedulerTicksPerWheel must be(512)
|
SchedulerTicksPerWheel must be(512)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue