Raise major version limit for msgpack (#8466)

This commit is contained in:
Alec Brickner
2020-06-01 20:00:36 -07:00
committed by GitHub
parent a2ec282033
commit 207ab44129
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -69,4 +69,4 @@ def serialize(obj) -> bytes:
def deserialize(data: bytes):
"""Deserialize the binary data serialized by `PythonGateway`"""
return msgpack.unpackb(data, raw=False)
return msgpack.unpackb(data, raw=False, strict_map_key=False)