From 322ebcb9cf7141126c076905e51965e565d076aa Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Mon, 25 Jul 2011 15:40:50 +0100 Subject: [PATCH] SQS: Disables SimpleDB persistence by default --- kombu/transport/SQS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kombu/transport/SQS.py b/kombu/transport/SQS.py index 488ff5d1..00e4c580 100644 --- a/kombu/transport/SQS.py +++ b/kombu/transport/SQS.py @@ -311,7 +311,7 @@ class Channel(virtual.Channel): @cached_property def supports_fanout(self): - return self.transport_options.get("sdb_persistence", True) + return self.transport_options.get("sdb_persistence", False) @cached_property def region(self):