Skip to content

Commit b05d56e

Browse files
committed
Fix pod worker and prober log message typos
Two small typos which should be fixed accordingly. Signed-off-by: Sascha Grunert <[email protected]>
1 parent 9a03243 commit b05d56e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/kubelet/pod_workers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1508,7 +1508,7 @@ func (p *podWorkers) completeWork(podUID types.UID, phaseTransition bool, syncEr
15081508
if status.pendingUpdate != nil {
15091509
select {
15101510
case p.podUpdates[podUID] <- struct{}{}:
1511-
klog.V(4).InfoS("Requeueing pod due to pending update", "podUID", podUID)
1511+
klog.V(4).InfoS("Requeuing pod due to pending update", "podUID", podUID)
15121512
default:
15131513
klog.V(4).InfoS("Pending update already queued", "podUID", podUID)
15141514
}

pkg/kubelet/prober/worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ probeLoop:
183183
// Updating the periodic timer to run the probe again at intervals of probeTickerPeriod
184184
// starting from the moment a manual run occurs.
185185
probeTicker.Reset(probeTickerPeriod)
186-
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)
186+
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)
187187
// continue
188188
}
189189
}

0 commit comments

Comments
 (0)