diff --git a/etcd.go b/etcd.go index 6b92de261..f8ebd42dd 100644 --- a/etcd.go +++ b/etcd.go @@ -101,7 +101,7 @@ const ( ) const ( - ELECTIONTIMTOUT = 200 * time.Millisecond + ELECTIONTIMEOUT = 200 * time.Millisecond HEARTBEATTIMEOUT = 50 * time.Millisecond // Timeout for internal raft http connection @@ -233,7 +233,7 @@ func startRaft(securityType int) { } } - raftServer.SetElectionTimeout(ELECTIONTIMTOUT) + raftServer.SetElectionTimeout(ELECTIONTIMEOUT) raftServer.SetHeartbeatTimeout(HEARTBEATTIMEOUT) raftServer.Start() diff --git a/etcd_long_test.go b/etcd_long_test.go index 258d60eaf..fed6e9e45 100644 --- a/etcd_long_test.go +++ b/etcd_long_test.go @@ -54,8 +54,8 @@ func TestKillLeader(t *testing.T) { totalTime += take avgTime := totalTime / (time.Duration)(i+1) - fmt.Println("Leader election time is ", take, "with election timeout", ELECTIONTIMTOUT) - fmt.Println("Leader election time average is", avgTime, "with election timeout", ELECTIONTIMTOUT) + fmt.Println("Leader election time is ", take, "with election timeout", ELECTIONTIMEOUT) + fmt.Println("Leader election time average is", avgTime, "with election timeout", ELECTIONTIMEOUT) etcds[num], err = os.StartProcess("etcd", argGroup[num], procAttr) }