简体   繁体   中英

Cowboy websocket termination error

I am implementing cowboy websocket. Everything is working fine except when user closes the browser it fires websocket_termination and at server end it generates following error:-

Error in process <0.298.0> on node 'ews_2@servername.com' with exit value: {function_clause,   
[{cowboy_req,ensure_response,[{[]},204],[{file,"src/cowboy_req.erl"},{line,1112}]},     
{cowboy_protocol,next_request,3,[{file,"src/cowboy_protocol.erl"},{line,545}]}]}

Code in websocket_termination is :-

websocket_terminate(Reason, Req, State) ->
io:format("~nWebsocket connection termination~n"),
ok.

解决:问题是未传递Req并在回调之间进行了操纵... Cowboy需要在连接终止时传递适当的Req参数。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM