Open haspadar opened 12 years ago
Cowboy API running fast, it's better to target 0.8.0
Bad news: This release drops R14 compatibility
. I can't do that.
Related: sockjs/sockjs-protocol#57
cowboy_http_req
got renamed to cowboy_req
. This is quite bad as changing that would break compatibility with older cowboy. Quick workaround:
$ sed -i 's/cowboy_http_req/cowboy_req/g' src/sockjs_http.erl
Also @yrashk had already done the port: https://github.com/spawngrid/sockjs-erlang/tree/cowboy-master
Yep, it's in the testing now but so far it seems to work.
@yrashk Are there changes similar to b19ead66e847b149c9ccad5ffc837e58eb283c34 that could be ported to mainline without breaking compatibility with R14 and older cowboy?
I have an idea how to do a port that will work for both versions of cowboy, but it is not going to be too pretty.
Basically, we should utilize the dispatching already in place and for old cowboy use {cowboy, Req} and for new cowboy use {cowboy1, Req} (for example). Then you can easily copy over changes from my port line by line and keep both versions.
The changes seem to be:
Did I miss anything?
On Tue, Oct 30, 2012 at 12:32 PM, Marek Majkowski notifications@github.comwrote:
The changes seem to be:
- cowboy_http_req -> cowboy_req
- new dependency - ranch
- instead of cowboy:start_http we have cowboy:start_listener
- casing of headers (camelcase vs lowercase) (can you explain this?)
- cowboy_req:path vs cowboy_http_req:raw_path
Did I miss anything?
— Reply to this email directly or view it on GitHubhttps://github.com/sockjs/sockjs-erlang/issues/37#issuecomment-9919762.
@yrashk I've noticed you forked master
branch, not dev
, therefore sockjs-protocol-dev.py fails in few more places. Could you take a look? I don't think there are many changes included on dev.
I am trying to understand what changes at https://github.com/sockjs/sockjs-erlang/compare/master...dev are important
On Tue, Oct 30, 2012 at 1:06 PM, Marek Majkowski notifications@github.comwrote:
@yrashk https://github.com/yrashk I've noticed you forked masterbranch, not dev, therefore sockjs-protocol-dev.py fails in few more places. Could you take a look? I don't think there are many changes included on dev.
— Reply to this email directly or view it on GitHubhttps://github.com/sockjs/sockjs-erlang/issues/37#issuecomment-9920835.
See https://github.com/extend/cowboy/blob/master/CHANGELOG.md