communication: use unpack without bytes
This commit is contained in:
parent
53a4ec6192
commit
41a62fc572
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ def _remote_call(url, payload, exceptions_map, session):
|
|||
raise exceptions.HttpVCSCommunicationError(repr(response.content))
|
||||
|
||||
try:
|
||||
response = msgpack.unpackb(response.content)
|
||||
response = msgpack.unpackb(response.content, raw=False)
|
||||
except Exception:
|
||||
log.exception('Failed to decode response %r', response.content)
|
||||
raise
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue