Merge pull request #3740 from Shopify/session-annotation-reload

Fix ingress updating for session-cookie-* annotation changes
This commit is contained in:
Kubernetes Prow Robot 2019-02-19 15:14:21 -08:00 committed by GitHub
commit 15d5ef95ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 103 additions and 27 deletions

View file

@ -230,6 +230,12 @@ func (csa1 *CookieSessionAffinity) Equal(csa2 *CookieSessionAffinity) bool {
if csa1.Path != csa2.Path {
return false
}
if csa1.Expires != csa2.Expires {
return false
}
if csa1.MaxAge != csa2.MaxAge {
return false
}
return true
}