Fix session-cookie-* annotation reloading

This commit is contained in:
Alex Kursell 2019-02-19 17:27:08 -05:00
parent ea9055b613
commit c180a0998b
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
}