mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-25 03:29:10 +08:00
better way to detect a master isLeader
This commit is contained in:
parent
40c8725ffa
commit
7a493bbefa
@ -50,6 +50,9 @@ func NewTopology(id string, seq sequence.Sequencer, volumeSizeLimit uint64, puls
|
||||
}
|
||||
|
||||
func (t *Topology) IsLeader() bool {
|
||||
if t.RaftServer!=nil {
|
||||
return t.RaftServer.State() == raft.Leader
|
||||
}
|
||||
if leader, e := t.Leader(); e == nil {
|
||||
return leader == t.RaftServer.Name()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user