mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
rm set NoSnapshotRestoreOnStart
This commit is contained in:
parent
68f11b9687
commit
0e796a5582
|
@ -93,7 +93,6 @@ func NewHashicorpRaftServer(option *RaftServerOption) (*RaftServer, error) {
|
||||||
|
|
||||||
c := raft.DefaultConfig()
|
c := raft.DefaultConfig()
|
||||||
c.LocalID = raft.ServerID(s.serverAddr) // TODO maybee the IP:port address will change
|
c.LocalID = raft.ServerID(s.serverAddr) // TODO maybee the IP:port address will change
|
||||||
c.NoSnapshotRestoreOnStart = option.RaftResumeState
|
|
||||||
c.HeartbeatTimeout = time.Duration(float64(option.HeartbeatInterval) * (rand.Float64()*0.25 + 1))
|
c.HeartbeatTimeout = time.Duration(float64(option.HeartbeatInterval) * (rand.Float64()*0.25 + 1))
|
||||||
c.ElectionTimeout = option.ElectionTimeout
|
c.ElectionTimeout = option.ElectionTimeout
|
||||||
if c.LeaderLeaseTimeout > c.HeartbeatTimeout {
|
if c.LeaderLeaseTimeout > c.HeartbeatTimeout {
|
||||||
|
|
Loading…
Reference in a new issue