Python AMQP 406 Precondition Failed Auto Delete
pika.exceptions.ChannelClosed: (406, "PRECONDITION_FAILED - inequivalent arg 'auto_delete' for exchange 'loging.dev' in vhost 'ivgdeswq': received 'false' but current is 'true'")
channel.exchange_declare(exchange='loging.dev',
type='topic')
routing_key = sys.argv[1] if len(sys.argv) > 1 else 'anonymous.info'
message = ' '.join(sys.argv[2:]) or 'Hello World!'
channel.basic_publish(exchange='loging.dev',
routing_key=routing_key,
body=message)
print " [x] Sent %r:%r" % (routing_key, message)
connection.close()
The fix is just a configuration paramter:
channel.exchange_declare(exchange='loging.dev',
auto_delete=True,
type='topic')