From 46b1256d346f39fbbe73b4f8366d92d7dd1123e5 Mon Sep 17 00:00:00 2001 From: tanshanshan Date: Thu, 9 Feb 2017 12:19:32 +0800 Subject: [PATCH] fix wrong --- pkg/kubelet/prober/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/prober/worker.go b/pkg/kubelet/prober/worker.go index d33705027d7..1cf52680321 100644 --- a/pkg/kubelet/prober/worker.go +++ b/pkg/kubelet/prober/worker.go @@ -215,7 +215,7 @@ func (w *worker) doProbe() (keepGoing bool) { w.resultsManager.Set(w.containerID, result, w.pod) if w.probeType == liveness && result == results.Failure { - // The container fails a liveness check, it will need to be restared. + // The container fails a liveness check, it will need to be restarted. // Stop probing until we see a new container ID. This is to reduce the // chance of hitting #21751, where running `docker exec` when a // container is being stopped may lead to corrupted container state.