acknowledgment (US) not acknowledgEment

This commit is contained in:
Ask Solem 2016-03-22 13:51:35 -07:00
parent 9b5bd3bd00
commit 4f4c2c9a04
3 changed files with 5 additions and 5 deletions

View File

@ -2722,7 +2722,7 @@ Fixes
Fix contributed by Hong Minhee
* SQS Transport: Fixes KeyError on message acknowledgements (Issue #73).
* SQS Transport: Fixes KeyError on message acknowledgments (Issue #73).
The SQS transport now uses UUID's for delivery tags, rather than
a counter.

View File

@ -24,7 +24,7 @@
.. attribute:: no_ack
flag to enable/disable acknowledgements.
flag to enable/disable acknowledgments.
.. attribute:: queue
@ -65,7 +65,7 @@
.. attribute:: no_ack
flag to enable/disable acknowledgements.
flag to enable/disable acknowledgments.
.. attribute:: queue

View File

@ -666,7 +666,7 @@ class Connection(object):
also it will be used as the default routing key.
:param name: Name of the queue/or a :class:`~kombu.Queue`.
:keyword no_ack: Disable acknowledgements. Default is false.
:keyword no_ack: Disable acknowledgments. Default is false.
:keyword queue_opts: Additional keyword arguments passed to the
constructor of the automatically created
:class:`~kombu.Queue`.
@ -689,7 +689,7 @@ class Connection(object):
Same as :meth:`SimpleQueue`, but configured with buffering
semantics. The resulting queue and exchange will not be durable, also
auto delete is enabled. Messages will be transient (not persistent),
and acknowledgements are disabled (``no_ack``).
and acknowledgments are disabled (``no_ack``).
"""
from .simple import SimpleBuffer