gmr / pamqp

Low level AMQP frame encoding and decoding library
https://pamqp.readthedocs.io
BSD 3-Clause "New" or "Revised" License
50 stars 20 forks source link

Remove `internal must be false` check to support RabbitMQ Tracing #50

Closed hari01584 closed 10 months ago

hari01584 commented 1 year ago

RabbitMQ has this special queue called amq.rabbitmq.trace which has these parameters: auto_delete=False, type=ExchangeType.TOPIC, durable=True, internal=True

However initializing internal to False, was throwing error, removing the check, the tracing is working as expected

`

Lancetnik commented 1 year ago

@gmr can you merge this PR, please? Looks like it is unneccessary limitation Also as the #49 too