From 6da9abf3af9c56b427d3485e6a1e9910d0e82e61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Fri, 2 Oct 2020 13:39:18 +0200 Subject: [PATCH] auto_delete should be false as well --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index de971c2..4cca4ed 100644 --- a/src/app.py +++ b/src/app.py @@ -71,7 +71,7 @@ def before_first_request(): ch.exchange_declare(exchange=RABBITMQ_EXCHANGE, exchange_type='fanout', durable=False, - auto_delete=True) + auto_delete=False) fpika.return_channel(ch)