Hello, I think I met a bug in ginex.
While I use ginex with gorilla/websocket, single websocket on the route is OK, however when it comes two or more connection on the same route, I found that these handlers will complete run in the same http.Request even in the same handler instance.
This happens in whatever the browser is same or not, whatever the page is same or not, even whatever the device is same or not...
I tried to create websocket in different route, and didn't find any problem, only when the route is same that happens.
Is this a bug? Or what should I do to make this correct?
Comment From: stefenson
Some additional info: I tried to use other websockets go package, and the result is in same. So I don't think it is the websocket implementation problem.
Comment From: stefenson
OK, my bad.
I finally found a business bug in my code, ginex is not wrong. :(
Anyway, thanks.