Jesse Gumm
Jesse Gumm
Whoa, crashing the node! Thanks for the report and the repo to reproduce. I'll see what I can find.
Yeah, I'd say, if you know it's a date, wrap it so that it's a datetime tuple: `{Date, {0,0,0}}`. Then the ambiguity is removed.
Yes. I've just been seriously backed up with work and haven't had a chance. But thank you for the prod.
Thanks Graeme, This will need some work in order to ensure that the tests pass - as this little "../priv" was added because the tests required it. Before merging this,...
Erlang no longer supports Pmods, but Pmods are enabled by the use of an official parse transformation (https://github.com/erlang/pmod_transform), so it should be supported going forward. As for Erlang 19, @danikp...
Minor correction, but set_response_data/1 has always _actually_ been a /2 due to the pmod syntax. Bridge:set_response_data(Data) is exactly the same as sbw:set_response_data(Data, Bridge) - the former is just a hack...
I don't like the Size requirement either, and I believe it used to be part of the cowboy specs, but it seems to be fixed in 1.1.x (https://github.com/ninenines/cowboy/blob/1.1.x/src/cowboy_rest.erl#L863-L871) I'll have...
I'd be curious what would happen if you tried `Req:deep_post_params("attachments[0]")`, though the throwing of errors for `Req:deep_post_params("attachments")` definitely sounds like a bug.
That's clearly just a url-encoded post string and not json, so I'm not sure where the json bit is coming in. It seems to me that simple_bridge is just failing...
So, it appears that the websocket handler [converts the session_key to a binary](https://github.com/ChicagoBoss/ChicagoBoss/blob/master/src/boss/boss_simple_bridge_handler.erl#L34-L36) (which ensures that the value of the cookie will be returned as a binary). But the boss_web_controller...