Skip to content
Snippets Groups Projects
Commit ff369bcd authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

v0.103

parent eb08b023
No related branches found
Tags v0.103
No related merge requests found
# v0.103:
* bugfix in handling exchange in publish
# v0.102: # v0.102:
* due to noticed behaviour on some Linuxes that changing epoll from another thread * due to noticed behaviour on some Linuxes that changing epoll from another thread
......
# coding=UTF-8 # coding=UTF-8
__version__ = '0.102' __version__ = '0.103'
...@@ -159,7 +159,7 @@ class Cluster(object): ...@@ -159,7 +159,7 @@ class Cluster(object):
exchange = exchange.name.encode('utf8') exchange = exchange.name.encode('utf8')
elif exchange is None: elif exchange is None:
exchange = b'' exchange = b''
else: elif isinstance(exchange, six.text_type):
exchange = exchange.encode('utf8') exchange = exchange.encode('utf8')
if isinstance(routing_key, six.text_type): if isinstance(routing_key, six.text_type):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment