From b05d56e5a540e4dece4f51d4bd77bab36e844452 Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Thu, 6 Feb 2025 11:52:47 +0100 Subject: [PATCH] Fix pod worker and prober log message typos Two small typos which should be fixed accordingly. Signed-off-by: Sascha Grunert --- pkg/kubelet/pod_workers.go | 2 +- pkg/kubelet/prober/worker.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/pod_workers.go b/pkg/kubelet/pod_workers.go index 30850d830f6..aa03d2a5c7d 100644 --- a/pkg/kubelet/pod_workers.go +++ b/pkg/kubelet/pod_workers.go @@ -1508,7 +1508,7 @@ func (p *podWorkers) completeWork(podUID types.UID, phaseTransition bool, syncEr if status.pendingUpdate != nil { select { case p.podUpdates[podUID] <- struct{}{}: - klog.V(4).InfoS("Requeueing pod due to pending update", "podUID", podUID) + klog.V(4).InfoS("Requeuing pod due to pending update", "podUID", podUID) default: klog.V(4).InfoS("Pending update already queued", "podUID", podUID) } diff --git a/pkg/kubelet/prober/worker.go b/pkg/kubelet/prober/worker.go index 159112cfcb3..aea276de6c7 100644 --- a/pkg/kubelet/prober/worker.go +++ b/pkg/kubelet/prober/worker.go @@ -183,7 +183,7 @@ probeLoop: // Updating the periodic timer to run the probe again at intervals of probeTickerPeriod // starting from the moment a manual run occurs. probeTicker.Reset(probeTickerPeriod) - klog.V(4).InfoS("Triggerd Probe by manual run", "probeType", w.probeType, "pod", klog.KObj(w.pod), "podUID", w.pod.UID, "containerName", w.container.Name) + klog.V(4).InfoS("Triggered Probe by manual run", "probeType", w.probeType, "pod", klog.KObj(w.pod), "podUID", w.pod.UID, "containerName", w.container.Name) // continue } }