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
According to rbmq ref card's queue_bind: "A server MUST not deliver the same message more than once to a queue, even if the queue has multiple bindings that match the message."
That can be violated if a message has been published with more then one routingKey, e.g. ['validKey', null], this message will be delivered twice to the queue with bindingKey = to validKey.
Since null will publish message to all listening queues regardless of their bindingKeys.
The text was updated successfully, but these errors were encountered:
According to rbmq ref card's queue_bind: "A server MUST not deliver the same message more than once to a queue, even if the queue has multiple bindings that match the message."
That can be violated if a message has been published with more then one routingKey, e.g. ['validKey', null], this message will be delivered twice to the queue with bindingKey = to
validKey
.Since null will publish message to all listening queues regardless of their bindingKeys.
The text was updated successfully, but these errors were encountered: