瀏覽代碼

etcdserver: fix typo in "adjustTicks"

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee 7 年之前
父節點
當前提交
03cf9c45f8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      etcdserver/server.go

+ 1 - 1
etcdserver/server.go

@@ -562,7 +562,7 @@ func (s *EtcdServer) adjustTicks() {
 			// multi-node received peer connection reports
 			// adjust ticks, in case slow leader message receive
 			ticks := s.Cfg.ElectionTicks - 2
-			plog.Infof("%s initialzed peer connection; fast-forwarding %d ticks (election ticks %d) with %d active peer(s)", s.ID(), ticks, s.Cfg.ElectionTicks, peerN)
+			plog.Infof("%s initialized peer connection; fast-forwarding %d ticks (election ticks %d) with %d active peer(s)", s.ID(), ticks, s.Cfg.ElectionTicks, peerN)
 			s.r.advanceTicks(ticks)
 			return
 		}