diff --git a/README.md b/README.md index e0dca51..6ca9ed7 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ builder.Services.MapQueue(config => con .WithDispatchInChildScope() .WithKeyedService("key-of-service-1") .WithAdapter((svc, msg) => svc.DoSomethingAsync(msg)) - .WithQueueName("events") + .WithQueueName("events1") .WithPrefetchCount(1) ); @@ -89,7 +89,7 @@ builder.Services.MapQueue(config => con .WithDispatchInChildScope() .WithKeyedService("key-of-service-2") .WithAdapter((svc, msg) => svc.DoSomethingAsync(msg)) - .WithQueueName("events") + .WithQueueName("events2") .WithPrefetchCount(1) );