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
This is a small issue I found when using overflow with user policies in RabbitMQ 3.7.4
Create a queue user policy with overflow value of reject-publish . Set max-length to 100.
Verify producer receives nacks once downstream queue limit (100) has been reached. This works as expected.
Now update the same policy to remove the overflow property altogether. The expectation is that overflow will revert to the default value drop-head and no longer send nacks to the producer.
Producer sends a message to the full queue and unexpectedly still receives nacks.