Skip to content

Commit

Permalink
Update projects/RabbitMQ.Client/client/impl/ConsumerDispatching/Consu…
Browse files Browse the repository at this point in the history
…merDispatcherBase.cs

Co-authored-by: Paulo Morgado <470455+paulomorgado@users.noreply.github.com>
  • Loading branch information
lukebakken and paulomorgado committed May 25, 2024
1 parent c3e4b22 commit cbcc643
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace RabbitMQ.Client.ConsumerDispatching
internal abstract class ConsumerDispatcherBase
{
private static readonly FallbackConsumer s_fallbackConsumer = new FallbackConsumer();
private readonly IDictionary<string, IBasicConsumer> _consumers = new ConcurrentDictionary<string, IBasicConsumer>();
private readonly ConcurrentDictionary<string, IBasicConsumer> _consumers = new ConcurrentDictionary<string, IBasicConsumer>();

public IBasicConsumer? DefaultConsumer { get; set; }

Expand Down

0 comments on commit cbcc643

Please sign in to comment.