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 d7abf22 commit 359c42bCopy full SHA for 359c42b
projects/RabbitMQ.Client/client/impl/AutorecoveringConnection.Recording.cs
@@ -82,7 +82,7 @@ internal void DeleteAutoDeleteExchange(string exchangeName)
82
if (!AnyBindingsOnExchange(exchangeName))
83
{
84
// last binding where this exchange is the source is gone, remove recorded exchange if it is auto-deleted.
85
- _recordedExchanges.Remove(exchangeName);
+ DeleteRecordedExchange(exchangeName);
86
}
87
88
@@ -209,7 +209,7 @@ void DeleteAutoDeleteQueue(string queue)
209
// last consumer on this connection is gone, remove recorded queue if it is auto-deleted.
210
if (!AnyConsumersOnQueue(queue))
211
212
- _recordedQueues.Remove(queue);
+ DeleteRecordedQueue(queue);
213
214
215
0 commit comments