From 9ac1bf6ca2fe8114fab961ce7bb02e34aa1c034f Mon Sep 17 00:00:00 2001 From: rg9400 <39887349+rg9400@users.noreply.github.com> Date: Tue, 8 Dec 2020 11:40:27 -0600 Subject: [PATCH] fix typo (#702) --- pkg/container/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/container/client.go b/pkg/container/client.go index ce694d03..2063332a 100644 --- a/pkg/container/client.go +++ b/pkg/container/client.go @@ -295,7 +295,7 @@ func (client dockerClient) PullImage(ctx context.Context, container Container) e log.WithFields(fields).Debugf("Checking if pull is needed") if match, err := digest.CompareDigest(container, opts.RegistryAuth); err != nil { - log.Info("Could not do a head request, falling back to regulara pull.") + log.Info("Could not do a head request, falling back to regular pull.") log.Debugf("Reason: %s", err.Error()) } else if match { log.Debug("No pull needed. Skipping image.")