Revision 5edaee79e67c27135b3d936e368c4b1261f22918 authored by Xiang Li on 06 December 2013, 04:33:56 UTC, committed by Xiang Li on 06 December 2013, 04:33:56 UTC
2 parent s 1a7eb36 + ded3cc2
Raw File
timeout.go
package server

import (
	"time"
)

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
)
back to top