Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Precondition failed when re-declaring classic queue. #341

Closed
lukebakken opened this issue Nov 15, 2019 · 0 comments · Fixed by #342
Closed

Precondition failed when re-declaring classic queue. #341

lukebakken opened this issue Nov 15, 2019 · 0 comments · Fixed by #342
Assignees
Milestone

Comments

@lukebakken
Copy link
Contributor

Reproduce with the following Python code:

import logging
import pika

logging.basicConfig(level=logging.DEBUG)

with pika.BlockingConnection() as connection:
    channel = connection.channel()
    channel.queue_declare(queue='classic-queue')

with pika.BlockingConnection() as connection:
    channel = connection.channel()
    channel.queue_declare(queue='classic-queue', arguments={'x-queue-type': 'classic'})
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant