From b30a6aa0bad4f3ef34a23d0b41ccc38c9848d6fc Mon Sep 17 00:00:00 2001 From: Luiz Carlos Faria Date: Mon, 3 Jun 2024 20:54:35 -0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) );