1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-23 17:48:30 +00:00

Changed queue durability from false to true

This commit is contained in:
Tuna Celik 2020-08-17 14:44:16 +02:00
parent bf5272e83d
commit 896642b374

View file

@ -21,7 +21,7 @@ class Hook(hook.BaseHook):
self._channel = connection.channel()
def _make_declare_queue_synced(self, topic):
self._channel.queue_declare(queue=topic)
self._channel.queue_declare(queue=topic, durable=True)
def notify(self, notification_item):
if isinstance(notification_item, HookNotificationItem):