You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the thing is when I receive any message to the queue with one of those routing keys in the example it bounces between the handlers on every receive.
For example I have two handlers handlerA for routeA handlerB for routeB
both on the same queue
When I send two messages with routeA, the first one is received by handlerA and the second by handlerB
Same if I send with routeB, the first one is received by handlerA and the second by handlerB
When defining two different handlers for messages on the same queue with different routing keys only the first is registered.
Expected behavior
One queue with two bindings, one for each routing key will be created
Observed behavior
Only one binding is created
Screenshots
Additional context
faststream = {extras = ["rabbit"], version = "^0.5.33"}
The text was updated successfully, but these errors were encountered: