From 5413d0edfa481dd9162b47e295888255f34c32b4 Mon Sep 17 00:00:00 2001 From: Kensei Nakada Date: Fri, 21 Mar 2025 12:37:19 +0900 Subject: [PATCH] chore: correct the comment on UnschedulablePlugins --- pkg/scheduler/framework/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/framework/types.go b/pkg/scheduler/framework/types.go index fbc02a223a6..f580dfca473 100644 --- a/pkg/scheduler/framework/types.go +++ b/pkg/scheduler/framework/types.go @@ -377,7 +377,7 @@ type QueuedPodInfo struct { // latency for a pod. InitialAttemptTimestamp *time.Time // UnschedulablePlugins records the plugin names that the Pod failed with Unschedulable or UnschedulableAndUnresolvable status - // at specific extension points: PreFilter, Filter, Reserve, Permit (WaitOnPermit), or PreBind. + // at specific extension points: PreFilter, Filter, Reserve, or Permit (WaitOnPermit). // If Pods are rejected at other extension points, // they're assumed to be unexpected errors (e.g., temporal network issue, plugin implementation issue, etc) // and retried soon after a backoff period.