12 lines
294 B
Go
12 lines
294 B
Go
package server
|
|
|
|
const (
|
|
// The amount of time to elapse without a heartbeat before becoming a candidate.
|
|
ElectionTimeout = 200 * time.Millisecond
|
|
|
|
// The frequency by which heartbeats are sent to followers.
|
|
HeartbeatTimeout = 50 * time.Millisecond
|
|
|
|
RetryInterval = 10
|
|
)
|