From 84fd2f2f76742b2c9d53588942ebd530724feb3b Mon Sep 17 00:00:00 2001 From: bruceauyeung Date: Thu, 1 Dec 2016 15:24:44 +0800 Subject: [PATCH] fix glog message typo Signed-off-by: bruceauyeung --- cmd/kube-apiserver/app/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/kube-apiserver/app/server.go b/cmd/kube-apiserver/app/server.go index e2b233e5137..c3368599c7c 100644 --- a/cmd/kube-apiserver/app/server.go +++ b/cmd/kube-apiserver/app/server.go @@ -152,7 +152,7 @@ func Run(s *options.ServerRunOptions) error { if s.Etcd.StorageConfig.DeserializationCacheSize == 0 { // When size of cache is not explicitly set, estimate its size based on // target memory usage. - glog.V(2).Infof("Initalizing deserialization cache size based on %dMB limit", s.GenericServerRunOptions.TargetRAMMB) + glog.V(2).Infof("Initializing deserialization cache size based on %dMB limit", s.GenericServerRunOptions.TargetRAMMB) // This is the heuristics that from memory capacity is trying to infer // the maximum number of nodes in the cluster and set cache sizes based @@ -299,7 +299,7 @@ func Run(s *options.ServerRunOptions) error { } if s.GenericServerRunOptions.EnableWatchCache { - glog.V(2).Infof("Initalizing cache sizes based on %dMB limit", s.GenericServerRunOptions.TargetRAMMB) + glog.V(2).Infof("Initializing cache sizes based on %dMB limit", s.GenericServerRunOptions.TargetRAMMB) cachesize.InitializeWatchCacheSizes(s.GenericServerRunOptions.TargetRAMMB) cachesize.SetWatchCacheSizes(s.GenericServerRunOptions.WatchCacheSizes) }