timeout.go 246 B

123456789
  1. package config
  2. const (
  3. // The amount of time (in ms) to elapse without a heartbeat before becoming a candidate
  4. defaultElectionTimeout = 200
  5. // The frequency (in ms) by which heartbeats are sent to followers.
  6. defaultHeartbeatInterval = 50
  7. )