Skip to content

Commit 4a5aa2f

Browse files
authored
Merge pull request kubernetes#131563 from logica0419/kubeadm-string-concat
Add missing space in string concatenation (kubeadm)
2 parents 15f8e91 + c5a2c69 commit 4a5aa2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/kubeadm/app/preflight/checks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ func (ipc ImagePullCheck) Check() (warnings, errorList []error) {
843843
if err != nil {
844844
klog.V(4).Infof("failed to detect the sandbox image for local container runtime, %v", err)
845845
} else if criSandboxImage != ipc.sandboxImage {
846-
klog.Warningf("detected that the sandbox image %q of the container runtime is inconsistent with that used by kubeadm."+
846+
klog.Warningf("detected that the sandbox image %q of the container runtime is inconsistent with that used by kubeadm. "+
847847
"It is recommended to use %q as the CRI sandbox image.", criSandboxImage, ipc.sandboxImage)
848848
}
849849

0 commit comments

Comments
 (0)