mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
raft: correct doc comment
This commit is contained in:
parent
5250784b09
commit
68db18667a
@ -869,9 +869,9 @@ func (r *raft) loadState(state pb.HardState) {
|
||||
r.Vote = state.Vote
|
||||
}
|
||||
|
||||
// pastElectionTimeout returns true if r.electionElapsed is greater than the
|
||||
// randomized election timeout in [electiontimeout, 2 * electiontimeout - 1].
|
||||
// Otherwise, it returns false.
|
||||
// pastElectionTimeout returns true iff r.electionElapsed is greater
|
||||
// than or equal to the randomized election timeout in
|
||||
// [electiontimeout, 2 * electiontimeout - 1].
|
||||
func (r *raft) pastElectionTimeout() bool {
|
||||
return r.electionElapsed >= r.randomizedElectionTimeout
|
||||
}
|
||||
|
@ -747,7 +747,7 @@ func TestCommit(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestIsElectionTimeout(t *testing.T) {
|
||||
func TestPastElectionTimeout(t *testing.T) {
|
||||
tests := []struct {
|
||||
elapse int
|
||||
wprobability float64
|
||||
@ -776,7 +776,7 @@ func TestIsElectionTimeout(t *testing.T) {
|
||||
got = math.Floor(got*10+0.5) / 10.0
|
||||
}
|
||||
if got != tt.wprobability {
|
||||
t.Errorf("#%d: possibility = %v, want %v", i, got, tt.wprobability)
|
||||
t.Errorf("#%d: probability = %v, want %v", i, got, tt.wprobability)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user