From 6190b0f04be8c99d8f02e13e035f7d964195e491 Mon Sep 17 00:00:00 2001 From: Shane Jennings Date: Tue, 7 Jun 2022 10:55:15 +0100 Subject: [PATCH] Correct spelling mistake ("sanbdox" to "sandbox") Signed-off-by: Shane Jennings --- pkg/cri/server/sandbox_run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cri/server/sandbox_run.go b/pkg/cri/server/sandbox_run.go index 5cbe2d843..e3013a832 100644 --- a/pkg/cri/server/sandbox_run.go +++ b/pkg/cri/server/sandbox_run.go @@ -200,7 +200,7 @@ func (c *criService) RunPodSandbox(ctx context.Context, r *runtime.RunPodSandbox // Generate spec options that will be applied to the spec later. specOpts, err := c.sandboxContainerSpecOpts(config, &image.ImageSpec.Config) if err != nil { - return nil, fmt.Errorf("failed to generate sanbdox container spec options: %w", err) + return nil, fmt.Errorf("failed to generate sandbox container spec options: %w", err) } sandboxLabels := buildLabels(config.Labels, image.ImageSpec.Config.Labels, containerKindSandbox)