Skip to content

Commit cbcc643

Browse files
Update projects/RabbitMQ.Client/client/impl/ConsumerDispatching/ConsumerDispatcherBase.cs
Co-authored-by: Paulo Morgado <470455+paulomorgado@users.noreply.github.com>
1 parent c3e4b22 commit cbcc643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/RabbitMQ.Client/client/impl/ConsumerDispatching/ConsumerDispatcherBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace RabbitMQ.Client.ConsumerDispatching
1010
internal abstract class ConsumerDispatcherBase
1111
{
1212
private static readonly FallbackConsumer s_fallbackConsumer = new FallbackConsumer();
13-
private readonly IDictionary<string, IBasicConsumer> _consumers = new ConcurrentDictionary<string, IBasicConsumer>();
13+
private readonly ConcurrentDictionary<string, IBasicConsumer> _consumers = new ConcurrentDictionary<string, IBasicConsumer>();
1414

1515
public IBasicConsumer? DefaultConsumer { get; set; }
1616

0 commit comments

Comments
 (0)