diff --git a/tarantool_queue/tarantool_queue.py b/tarantool_queue/tarantool_queue.py index 61117d4..e64fb37 100644 --- a/tarantool_queue/tarantool_queue.py +++ b/tarantool_queue/tarantool_queue.py @@ -382,7 +382,7 @@ def basic_serialize(data): @staticmethod def basic_deserialize(data): - return msgpack.unpackb(data) + return msgpack.unpackb(data, encoding='utf-8') def __init__(self, host="localhost", port=33013, space=0, schema=None): if not(host and port):