Browse Source

etcdserver: fix typo in log message

Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
Sam Batschelet 6 years ago
parent
commit
1411c585be
1 changed files with 1 additions and 1 deletions
  1. 1 1
      etcdserver/server.go

+ 1 - 1
etcdserver/server.go

@@ -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),