We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you have a binding using '#' as the routing key, invoking delete_binding with '#' will not work.
delete_binding
'#'
The DELETE http call is being made without properly encoding the '#' in the URL, resulting in a 405 error.
DELETE
A workaround now is to manually url-encode the routing key ('%23') in the delete_binding() call
'%23'
delete_binding()
The text was updated successfully, but these errors were encountered:
I fork and update module. Welcome https://github.com/deslum/pyrabbit2
Sorry, something went wrong.
No branches or pull requests
If you have a binding using '#' as the routing key, invoking
delete_binding
with'#'
will not work.The
DELETE
http call is being made without properly encoding the '#' in the URL, resulting in a 405 error.A workaround now is to manually url-encode the routing key (
'%23'
) in thedelete_binding()
callThe text was updated successfully, but these errors were encountered: