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
I get code 312 in BasicReturn event handler's args.ReplyCode and "NO_ROUTE" as a message. There is no such code in RabbitMQ.Client.Constants class, the closest is RabbitMQ.Client.Constants.NoConsumers which is 313.
Reproduction steps
Use .NET RabbitMQ.Client nuget version 6.5.0
Use IModel.BasicPublish() and subscribe to IModel.BasicReturn event handler
See 312 reply code when the handler is triggered
Expected behavior
313 reply code so I can use RabbitMQ.Client.Constants.NoConsumers in my tests
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
When I call the following code with invalid (non existing queue)
routingKey
I get code
312
inBasicReturn
event handler'sargs.ReplyCode
and "NO_ROUTE" as a message. There is no such code inRabbitMQ.Client.Constants
class, the closest isRabbitMQ.Client.Constants.NoConsumers
which is313
.Reproduction steps
Use .NET RabbitMQ.Client nuget version 6.5.0
Use
IModel.BasicPublish()
and subscribe toIModel.BasicReturn
event handlerSee
312
reply code when the handler is triggeredExpected behavior
313
reply code so I can useRabbitMQ.Client.Constants.NoConsumers
in my testsAdditional context
No response
The text was updated successfully, but these errors were encountered: