Skip to content

Commit

Permalink
Fix kuadrant route cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
averevki committed Nov 15, 2023
1 parent 3bcb381 commit 0da4b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/openshift/objects/gateway_api/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def expose_hostname(self, name) -> Route:
self.route.commit()
else:
self.route.add_hostname(route.model.spec.host)
self.selector.union(route.self_selector())
self.selector = self.selector.union(route.self_selector())
return HostnameWrapper(self.route, route.model.spec.host)

def commit(self):
Expand Down

0 comments on commit 0da4b09

Please sign in to comment.