summaryrefslogtreecommitdiff
path: root/kombu/transport/SQS.py
diff options
context:
space:
mode:
authorAdam Nelson <adam@varud.com>2011-08-16 21:31:34 -0400
committerAdam Nelson <adam@varud.com>2011-08-16 21:31:34 -0400
commitfb0afb3cc7f0a27258b1c98bcd49af86089e7b2b (patch)
tree44268502a35790244f1d1439fd6044ad8015477a /kombu/transport/SQS.py
parent8730f0f42f7dc5bc5ccf6652da845110addcf386 (diff)
parenta5f54f0745dd200a95516f4f770fff0a89127316 (diff)
downloadkombu-fb0afb3cc7f0a27258b1c98bcd49af86089e7b2b.tar.gz
Merge remote-tracking branch 'upstream/sqs'
Conflicts: README.rst funtests/tests/test_SQS.py funtests/transport.py kombu/transport/SQS.py
Diffstat (limited to 'kombu/transport/SQS.py')
-rw-r--r--kombu/transport/SQS.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/kombu/transport/SQS.py b/kombu/transport/SQS.py
index 0d64dcf3..7595867b 100644
--- a/kombu/transport/SQS.py
+++ b/kombu/transport/SQS.py
@@ -162,7 +162,7 @@ class Channel(virtual.Channel):
except KeyError:
q = self._queue_cache[queue] = self.sqs.create_queue(
self.entity_name(queue),
- self.visibility_timeout)
+ self.visibility_timeout)
return q
def _queue_bind(self, *args):
@@ -259,18 +259,18 @@ class Channel(virtual.Channel):
size += q.count()
if not size:
break
- q.clear()
+ q.clear()
return size
def close(self):
super(Channel, self).close()
for conn in (self._sqs, self._sdb):
if conn:
- try:
+ try:
conn.close()
- except AttributeError, exc: # FIXME ???
- if "can't set attribute" not in str(exc):
- raise
+ except AttributeError, exc: # FIXME ???
+ if "can't set attribute" not in str(exc):
+ raise
def _get_regioninfo(self, regions):
if self.region: