From 91b9d42109494135b55cfd89fbcdf3f9da10e9ab Mon Sep 17 00:00:00 2001 From: Sho SHIMIZU Date: Wed, 25 Sep 2019 16:38:03 +0900 Subject: [PATCH] Fix typo s/namespcae/namespace --- pkg/kubelet/dockershim/docker_sandbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/dockershim/docker_sandbox.go b/pkg/kubelet/dockershim/docker_sandbox.go index 1824cdbadbf..0a4be32ecc8 100644 --- a/pkg/kubelet/dockershim/docker_sandbox.go +++ b/pkg/kubelet/dockershim/docker_sandbox.go @@ -247,7 +247,7 @@ func (ds *dockerService) StopPodSandbox(ctx context.Context, r *runtimeapi.StopP // This depends on the implementation detail of network plugin and proper error handling. // For kubenet, if tearing down network failed and sandbox container is stopped, kubelet // will retry. On retry, kubenet will not be able to retrieve network namespace of the sandbox - // since it is stopped. With empty network namespcae, CNI bridge plugin will conduct best + // since it is stopped. With empty network namespace, CNI bridge plugin will conduct best // effort clean up and will not return error. errList := []error{} ready, ok := ds.getNetworkReady(podSandboxID)