diff --git a/kombu/transport/SQS.py b/kombu/transport/SQS.py index 01c0545d..dd2da307 100644 --- a/kombu/transport/SQS.py +++ b/kombu/transport/SQS.py @@ -285,6 +285,9 @@ class Channel(virtual.Channel): aws_secret_access_key=conninfo.password, port=conninfo.port) + def _next_delivery_tag(self): + return uuid() # See #73 + @property def sqs(self): if self._sqs is None: