Browse Source

rm set NoSnapshotRestoreOnStart

pull/2868/head
Konstantin Lebedev 3 years ago
parent
commit
0e796a5582
  1. 1
      weed/server/raft_hashicorp.go

1
weed/server/raft_hashicorp.go

@ -93,7 +93,6 @@ func NewHashicorpRaftServer(option *RaftServerOption) (*RaftServer, error) {
c := raft.DefaultConfig()
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.ElectionTimeout = option.ElectionTimeout
if c.LeaderLeaseTimeout > c.HeartbeatTimeout {

Loading…
Cancel
Save