From 07bce89fe688c15f18a8580baa7b7c61d5ff2b7c Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Tue, 5 Apr 2022 15:13:19 +0200 Subject: [PATCH] add note how to avoid amqp queues autocreation --- messenger.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/messenger.rst b/messenger.rst index afb3426e7d4..e900ae832c7 100644 --- a/messenger.rst +++ b/messenger.rst @@ -1193,6 +1193,7 @@ it in the ``port`` parameter of the DSN (e.g. ``amqps://localhost?cacert=/etc/ss By default, the transport will automatically create any exchanges, queues and binding keys that are needed. That can be disabled, but some functionality may not work correctly (like delayed queues). + To not autocreate any queues, you can configure a transport with `queues: []`. .. note::