Hi all!

    Stuck with AmpList again :( Im trying to send/retrieve data much larger then 64K and choose AmpList cause it "Convert a list of dictionaries into a list of AMP boxes".

My original data looks like a long list of dicts [ {1}, {2}, ..., {x} ].
I convert it to [
    {'data': 'json encoded 1,2 dicts'},
    {'data': 'json encoded 3,4 dicts}',
    ...
] hoping EACH element in converted list will be converted to AmpBox and retriever on wire.

However, still got TooLong exception on AmpBox.serialize(). AmpBox trying to serialize all my converted list but not each dict in it separately.

Does this behavior ok, or this is a bug?

--
WBR, Vlad