How to broadcast a message to multiple nodes? #3715
-
|
I have a small demo working where I am sending messages with I am using rabbitmq for the transport, and configuring it like this: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I found out the subscription names have to be unique. For me the workaround was changing |
Beta Was this translation helpful? Give feedback.
I found out the subscription names have to be unique. For me the workaround was changing
new SubscriptionName(nameof(EventsOccurredEvent))tonew SubscriptionName($"{nameof(EventsOccurredEvent)}-{Guid.CreateVersion7()}")