Skip to content

Commit bdf07d1

Browse files
committed
chore(store): improve the TODO comment
1 parent 368c8b6 commit bdf07d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/ingress/store/store.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ func (s Store) ListIngressesV1() []*networkingv1.Ingress {
174174
s.logger.Warnf("listIngressesV1: dropping object of unexpected type: %#v", item)
175175
continue
176176
}
177-
if !s.isValidIngressClass(&ing.ObjectMeta, s.ingressClassMatching) { // TODO
177+
// TODO: Implement ingress class matching that uses the IngressV1 field (#590).
178+
if !s.isValidIngressClass(&ing.ObjectMeta, s.ingressClassMatching) {
178179
continue
179180
}
180181
ingresses = append(ingresses, ing)

0 commit comments

Comments
 (0)