raft: remove defunct println

This commit is contained in:
Blake Mizerany 2014-05-18 17:54:07 -07:00 committed by Yicheng Qin
parent 45500c5e7b
commit 8353340697

View File

@ -300,7 +300,6 @@ func (sm *stateMachine) step(m Message) {
case stateCandidate: case stateCandidate:
switch m.Type { switch m.Type {
case msgApp: case msgApp:
println("lost to appendEnts")
sm.becomeFollower(sm.term, m.From) sm.becomeFollower(sm.term, m.From)
handleAppendEntries() handleAppendEntries()
case msgVoteResp: case msgVoteResp: