Set-up

$ docker run -d -e RABBITMQ_NODENAME=rabbit \
    --name rabbit -p 8088:15672 -p 5672:5672 \
    --rm rabbitmq

Receiver subscribe the queue and bind the queue to exchange in the current session:

print(channel.queue_unbind(queue='danny', exchange='topic_logs', routing_key='#'))

Last updated

Was this helpful?