mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +00:00
Merge pull request #103792 from lixiaobing1/activeQ5
fix typo scheduling queue to active queue
This commit is contained in:
commit
6fb005d4d4
@ -287,7 +287,7 @@ func (p *PriorityQueue) Add(pod *v1.Pod) error {
|
||||
defer p.lock.Unlock()
|
||||
pInfo := p.newQueuedPodInfo(pod)
|
||||
if err := p.activeQ.Add(pInfo); err != nil {
|
||||
klog.ErrorS(err, "Error adding pod to the scheduling queue", "pod", klog.KObj(pod))
|
||||
klog.ErrorS(err, "Error adding pod to the active queue", "pod", klog.KObj(pod))
|
||||
return err
|
||||
}
|
||||
if p.unschedulableQ.get(pod) != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user