Fixed a bug in splitting long AMP messages as per #750.
This commit is contained in:
parent
fbb9f8a279
commit
c67aa4efc5
1 changed files with 1 additions and 1 deletions
|
|
@ -345,7 +345,7 @@ class AMPProtocol(amp.AMP):
|
||||||
return []
|
return []
|
||||||
else:
|
else:
|
||||||
# all parts in place - deserialize it
|
# all parts in place - deserialize it
|
||||||
return loads(_MSGBUFFER.pop(hashid) + data)
|
return loads("".join(_MSGBUFFER.pop(hashid)) + data)
|
||||||
|
|
||||||
|
|
||||||
# Message definition + helper methods to call/create each message type
|
# Message definition + helper methods to call/create each message type
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue