Federico C. Repond

Results 5 comments of Federico C. Repond

I would suggest using a map for `know_atoms` and then modifying `msgpack_unpacker:maybe_bin` as follow: ``` erlang maybe_bin(Bin, ?OPTION{known_atoms=KnownAtoms}) -> maps:get(Bin, KnownAtoms, Bin). ``` or without further modifications (to `msgpack:parse_options`) I'm...

The same happens here under Ubuntu with R16B from Erlang Solutions.

Yes, the rest works just fine. Only formatting seems to have problem under Erlang Solution's R15 and R16.

Based on the ideas from @BenoitToulet and trying not to modify our existing codebase we came to this solution. So far is working but it's barely tested. ```python import threading...

Perfect! Thanks