Annotations: Reload on custom header changes. (#12653)

Co-authored-by: jgoelen <jurgen.goelen@vlaanderen.be>
This commit is contained in:
k8s-infra-cherrypick-robot 2025-01-09 14:28:32 -08:00 committed by GitHub
parent 96cda8d697
commit 5802ecc4b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 29 additions and 2 deletions

View file

@ -470,6 +470,10 @@ func (l1 *Location) Equal(l2 *Location) bool {
return false
}
if !l1.CustomHeaders.Equal(&l2.CustomHeaders) {
return false
}
return true
}