diff --git a/core/pkg/ingress/types_equals.go b/core/pkg/ingress/types_equals.go index 76a3d0598..41000d4c2 100644 --- a/core/pkg/ingress/types_equals.go +++ b/core/pkg/ingress/types_equals.go @@ -476,6 +476,11 @@ func (l4b1 *L4Backend) Equal(l4b2 *L4Backend) bool { if l4b1.Protocol != l4b2.Protocol { return false } - + if l4b1.ServerName != l4b2.ServerName { + return false + } + if l4b1.UseProxyProtocol != l4b2.UseProxyProtocol { + return false + } return true }