Merge pull request #103792 from lixiaobing1/activeQ5

fix typo scheduling queue to active queue
This commit is contained in:
Kubernetes Prow Robot 2021-08-05 01:43:50 -07:00 committed by GitHub
commit 6fb005d4d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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