Fix pod worker and prober log message typos

Two small typos which should be fixed accordingly.

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
This commit is contained in:
Sascha Grunert 2025-02-06 11:52:47 +01:00
parent 9a03243789
commit b05d56e5a5
No known key found for this signature in database
GPG Key ID: 09D97D153EF94D93
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
} }
} }