Skip to content

Commit

Permalink
chore(store): improve the TODO comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mflendrich committed Sep 11, 2020
1 parent 368c8b6 commit bdf07d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/ingress/store/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ func (s Store) ListIngressesV1() []*networkingv1.Ingress {
s.logger.Warnf("listIngressesV1: dropping object of unexpected type: %#v", item)
continue
}
if !s.isValidIngressClass(&ing.ObjectMeta, s.ingressClassMatching) { // TODO
// TODO: Implement ingress class matching that uses the IngressV1 field (#590).
if !s.isValidIngressClass(&ing.ObjectMeta, s.ingressClassMatching) {
continue
}
ingresses = append(ingresses, ing)
Expand Down

0 comments on commit bdf07d1

Please sign in to comment.