Merge pull request #130000 from saschagrunert/typos

Fix pod worker and prober log message typos
This commit is contained in:
Kubernetes Prow Robot 2025-03-03 19:55:42 -08:00 committed by GitHub
commit 5db66add7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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)
}

View File

@ -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
}
}