mirror of https://github.com/celery/kombu.git
Fix librabbitmq queue handling (#726)
This commit is contained in:
parent
d27abc837d
commit
7152705d36
1
AUTHORS
1
AUTHORS
|
@ -109,6 +109,7 @@ Ralf Nyren <ralf-github@nyren.net>
|
|||
Randy Barlow <rbarlow@redhat.com>
|
||||
Raphael Michel <mail@raphaelmichel.de>
|
||||
Rob Ottaway <robottaway@gmail.com>
|
||||
Robert Kopaczewski <rk@23doors.com>
|
||||
Roger Hu <rhu@hearsaycorp.com>
|
||||
Rumyana Neykova <rumi.neykova@gmail.com>
|
||||
Rune Halvorsen <runeh@opera.com>
|
||||
|
|
|
@ -62,7 +62,8 @@ class Channel(amqp.Channel, base.StdChannel):
|
|||
return body, properties
|
||||
|
||||
def prepare_queue_arguments(self, arguments, **kwargs):
|
||||
return to_rabbitmq_queue_arguments(arguments, **kwargs)
|
||||
arguments = to_rabbitmq_queue_arguments(arguments, **kwargs)
|
||||
return {k.encode('utf8'): v for k, v in items(arguments)}
|
||||
|
||||
|
||||
class Connection(amqp.Connection):
|
||||
|
|
Loading…
Reference in New Issue