We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd2fbbd commit 1b49bd2Copy full SHA for 1b49bd2
sdk/servicebus/Microsoft.Azure.ServiceBus/src/Management/QueueDescription.cs
@@ -326,7 +326,7 @@ public bool Equals(QueueDescription otherDescription)
326
&& this.RequiresDuplicateDetection.Equals(other.RequiresDuplicateDetection)
327
&& this.RequiresSession.Equals(other.RequiresSession)
328
&& this.Status.Equals(other.Status)
329
- && this.internalSupportOrdering.Equals(other.SupportOrdering)
+ && this.SupportOrdering.Equals(other.SupportOrdering)
330
&& this.EnableExpress == other.EnableExpress
331
&& this.IsAnonymousAccessible == other.IsAnonymousAccessible
332
&& string.Equals(this.userMetadata, other.userMetadata, StringComparison.OrdinalIgnoreCase)
0 commit comments