Skip to content

Commit

Permalink
one more
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Kriss <[email protected]>
  • Loading branch information
skriss committed Feb 28, 2024
1 parent 149e616 commit f44d8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/gatewayapi/listeners.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func ValidateListeners(listeners []gatewayapi_v1.Listener) ValidateListenersResu
// This allows Listeners that appear first in list
// order to take precedence, i.e. to be accepted and
// programmed, when there is a conflict.
for j := 0; j < i; j++ {
for j := range i {
otherListener := listeners[j]

if listener.Port != otherListener.Port {
Expand Down

0 comments on commit f44d8ff

Please sign in to comment.