Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:celery/kombu
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Nov 11, 2016
2 parents bf64bf0 + 32997b1 commit 173b7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/userguide/consumers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ drain events from all channels on that connection.

Kombu since 3.0 will only accept json/binary or text messages by default,
to allow deserialization of other formats you have to specify them
in the ``accept`` argument:
in the ``accept`` argument (in addition to setting the right content type for your messages):

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion examples/rpc-tut6/rpc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def call(self, n):
exchange='',
routing_key='rpc_queue',
declare=[self.callback_queue],
reply_to=self.callback_queue,
reply_to=self.callback_queue.name,
correlation_id=self.correlation_id,
)
with Consumer(self.connection,
Expand Down

0 comments on commit 173b7a1

Please sign in to comment.