From 65ae6bb5aa49f8ea84e3066ded1419653c5b3372 Mon Sep 17 00:00:00 2001 From: Vijaya Gopal Yarramneni Date: Thu, 19 Nov 2020 18:52:48 -0800 Subject: [PATCH] Minor tweak in queue equals check --- .../src/Management/QueueDescription.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Management/QueueDescription.cs b/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Management/QueueDescription.cs index 7c2de4fbbb09..d0852da8c80d 100644 --- a/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Management/QueueDescription.cs +++ b/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Management/QueueDescription.cs @@ -326,7 +326,7 @@ public bool Equals(QueueDescription otherDescription) && this.RequiresDuplicateDetection.Equals(other.RequiresDuplicateDetection) && this.RequiresSession.Equals(other.RequiresSession) && this.Status.Equals(other.Status) - && this.internalSupportOrdering.Equals(other.SupportOrdering) + && this.SupportOrdering.Equals(other.SupportOrdering) && this.EnableExpress == other.EnableExpress && this.IsAnonymousAccessible == other.IsAnonymousAccessible && string.Equals(this.userMetadata, other.userMetadata, StringComparison.OrdinalIgnoreCase)