Skip to content

Commit 1b49bd2

Browse files
authored
Minor tweak in queue equals check (Azure#17104)
1 parent fd2fbbd commit 1b49bd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/servicebus/Microsoft.Azure.ServiceBus/src/Management/QueueDescription.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ public bool Equals(QueueDescription otherDescription)
326326
&& this.RequiresDuplicateDetection.Equals(other.RequiresDuplicateDetection)
327327
&& this.RequiresSession.Equals(other.RequiresSession)
328328
&& this.Status.Equals(other.Status)
329-
&& this.internalSupportOrdering.Equals(other.SupportOrdering)
329+
&& this.SupportOrdering.Equals(other.SupportOrdering)
330330
&& this.EnableExpress == other.EnableExpress
331331
&& this.IsAnonymousAccessible == other.IsAnonymousAccessible
332332
&& string.Equals(this.userMetadata, other.userMetadata, StringComparison.OrdinalIgnoreCase)

0 commit comments

Comments
 (0)