Skip to content

Commit

Permalink
Merge pull request #283 from averevki/fix-route-cleanup
Browse files Browse the repository at this point in the history
Fix kuadrant route cleanup
  • Loading branch information
pehala authored Nov 16, 2023
2 parents c80694d + 0da4b09 commit ed03039
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 ed03039

Please sign in to comment.