Skip to content

Add a missing constant for NO_ROUTE #1332

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions projects/RabbitMQ.Client/client/framing/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public static class Constants
public const int ReplySuccess = 200;
///<summary>(= 311)</summary>
public const int ContentTooLarge = 311;
///<summary>(= 312)</summary>
public const int NoRoute = 312;
///<summary>(= 313)</summary>
public const int NoConsumers = 313;
///<summary>(= 320)</summary>
Expand Down
1 change: 1 addition & 0 deletions projects/Unit/APIApproval.Approve.verified.txt
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ namespace RabbitMQ.Client
public const int InternalError = 541;
public const int InvalidPath = 402;
public const int NoConsumers = 313;
public const int NoRoute = 312;
public const int NotAllowed = 530;
public const int NotFound = 404;
public const int NotImplemented = 540;
Expand Down