Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/epp/requestcontrol/admission.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ func NewFlowControlAdmissionController(fc flowController, poolName string) *Flow
}
}

// Admit implements the AdmissionController interface by checking for saturation on sheddable requests first, then
// deferring to the Flow Control system.
// Admit defers the admission decision to the Flow Control system via EnqueueAndWait; saturation-based shedding
// of sheddable requests is handled downstream by the dispatch cycle, not at admission.
func (fcac *FlowControlAdmissionController) Admit(
ctx context.Context,
reqCtx *handlers.RequestContext,
Expand Down
Loading