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
librabbitmq does not implement exchange_bind for the Channel object. This is especially visible when using Kombu.
librabbitmq
exchange_bind
Versions:
librabbitmq==2.0.0
kombu==4.6.7
Bug:
from kombu import Connection, Exchange conn = Connection("amqp://user:password@host//") conn.transport_cls # yields librabbitmq Exchange("some_exchange", channel=conn.channel()).declare() Exchange("some_exchange", channel=conn.channel()).bind_to("amq.topic", routing_key="some_key") # raises AttributeError: 'Channel' object has no attribute 'exchange_bind'
Using pyamqp to demonstrate the expected behaviour:
pyamqp
from kombu import Connection, Exchange conn = Connection("amqp://user:password@host//", transport="pyamqp") conn.transport_cls # yields pyamqp Exchange("some_exchange", channel=conn.channel()).declare() Exchange("some_exchange", channel=conn.channel()).bind_to("amq.topic", routing_key="some_key")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
librabbitmq
does not implementexchange_bind
for the Channel object. This is especially visible when using Kombu.Versions:
librabbitmq==2.0.0
kombu==4.6.7
Bug:
Using
pyamqp
to demonstrate the expected behaviour:The text was updated successfully, but these errors were encountered: