zio/zio-zmx

The `ZMXProtocol.Data.FiberDump` serialized must be Array of Bulk Strings not Simple Strings

lkff opened this issue · 1 comments

lkff commented

The fiber dumps contain many new line characters.
RESP Simple Strings cannot contain neither \r nor \n.
Now with proper RESP implementation this is correctly assured (new lines are removed).
So this is now correctly broken 😉

To not lose the new lines ZMXProtocol.Data.FiberDump serialized must be Array of Bulk Strings.

lkff commented

My correct RESP implementation kinda broke it, so let me fix this 😄