etcdserver: fix typo in log message

Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
release-3.4
Sam Batschelet 2019-05-10 08:35:35 -04:00 committed by Sam Batschelet
parent 886d30d223
commit 1411c585be
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ func NewServer(cfg ServerConfig) (srv *EtcdServer, err error) {
if cfg.MaxRequestBytes > recommendedMaxRequestBytes {
if cfg.Logger != nil {
cfg.Logger.Warn(
"exceeded recommended requet limit",
"exceeded recommended request limit",
zap.Uint("max-request-bytes", cfg.MaxRequestBytes),
zap.String("max-request-size", humanize.Bytes(uint64(cfg.MaxRequestBytes))),
zap.Int("recommended-request-bytes", recommendedMaxRequestBytes),