tarantool / tarantool-python

Python client library for Tarantool
https://www.tarantool.io
BSD 2-Clause "Simplified" License
100 stars 48 forks source link

msgpack: Add 1.0.0 version support #167

Closed artembo closed 4 years ago

artembo commented 4 years ago

Fix for msgpack version 1.0.0 where strict_map_key param was removed.

Please see #155 issue for details.

Since msgpack 1.0.0 was released Unpacker does not have strict_map_key param and it is True by default now.

It makes the Connector fail with an error: ValueError: int is not allowed for map key

The PR contains a fix suggested by @Totktonada here in the PR #156 which is stuck.

Close related PR #156 please when this one is merged in master.

Totktonada commented 4 years ago

Closed in favor of PR #173.