Skip to content

Commit

Permalink
queue_limit_exceeded handled as precondition failed error code?"
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonUnge committed May 23, 2024
1 parent 8baa44a commit 91611d2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions deps/rabbit_common/src/rabbit_framing_amqp_0_9_1.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1227,6 +1227,7 @@ lookup_amqp_exception(no_consumers) -> {false, ?NO_CONSUMERS, <<"NO_CONSUMERS">>
lookup_amqp_exception(access_refused) -> {false, ?ACCESS_REFUSED, <<"ACCESS_REFUSED">>};
lookup_amqp_exception(not_found) -> {false, ?NOT_FOUND, <<"NOT_FOUND">>};
lookup_amqp_exception(resource_locked) -> {false, ?RESOURCE_LOCKED, <<"RESOURCE_LOCKED">>};
lookup_amqp_exception(queue_limit_exceeded) -> {false, ?PRECONDITION_FAILED, <<"PRECONDITION_FAILED">>};
lookup_amqp_exception(precondition_failed) -> {false, ?PRECONDITION_FAILED, <<"PRECONDITION_FAILED">>};
lookup_amqp_exception(connection_forced) -> {true, ?CONNECTION_FORCED, <<"CONNECTION_FORCED">>};
lookup_amqp_exception(invalid_path) -> {true, ?INVALID_PATH, <<"INVALID_PATH">>};
Expand Down

0 comments on commit 91611d2

Please sign in to comment.