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
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 { if status.pendingUpdate != nil {
select { select {
case p.podUpdates[podUID] <- struct{}{}: 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: default:
klog.V(4).InfoS("Pending update already queued", "podUID", podUID) 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 // Updating the periodic timer to run the probe again at intervals of probeTickerPeriod
// starting from the moment a manual run occurs. // starting from the moment a manual run occurs.
probeTicker.Reset(probeTickerPeriod) 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 // continue
} }
} }