mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
refactor(raft_hashicorp): timeSpeep
-> timeSleep
(#3694)
Signed-off-by: Ryan Russell <git@ryanrussell.org> Signed-off-by: Ryan Russell <git@ryanrussell.org>
This commit is contained in:
parent
c202d4c1b0
commit
c4fc007630
|
@ -154,9 +154,9 @@ func NewHashicorpRaftServer(option *RaftServerOption) (*RaftServer, error) {
|
||||||
cfg := s.AddPeersConfiguration()
|
cfg := s.AddPeersConfiguration()
|
||||||
// Need to get lock, in case all servers do this at the same time.
|
// Need to get lock, in case all servers do this at the same time.
|
||||||
peerIdx := getPeerIdx(s.serverAddr, s.peers)
|
peerIdx := getPeerIdx(s.serverAddr, s.peers)
|
||||||
timeSpeep := time.Duration(float64(c.LeaderLeaseTimeout) * (rand.Float64()*0.25 + 1) * float64(peerIdx))
|
timeSleep := time.Duration(float64(c.LeaderLeaseTimeout) * (rand.Float64()*0.25 + 1) * float64(peerIdx))
|
||||||
glog.V(0).Infof("Bootstrapping idx: %d sleep: %v new cluster: %+v", peerIdx, timeSpeep, cfg)
|
glog.V(0).Infof("Bootstrapping idx: %d sleep: %v new cluster: %+v", peerIdx, timeSleep, cfg)
|
||||||
time.Sleep(timeSpeep)
|
time.Sleep(timeSleep)
|
||||||
f := s.RaftHashicorp.BootstrapCluster(cfg)
|
f := s.RaftHashicorp.BootstrapCluster(cfg)
|
||||||
if err := f.Error(); err != nil {
|
if err := f.Error(); err != nil {
|
||||||
return nil, fmt.Errorf("raft.Raft.BootstrapCluster: %v", err)
|
return nil, fmt.Errorf("raft.Raft.BootstrapCluster: %v", err)
|
||||||
|
|
Loading…
Reference in a new issue