-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
webio_serve and @app doesn't work #241
Comments
I can't get any routing other than to "/" to work: app = Mux.stack(page("/failhttp", req -> respond("fail")), appending /webio-socket to routes vs not appending seems to be the issue: |
Digging deeper :src/providers/mux.jl is appending the "webio-socket" string removing this from the websocket routing allows routing to work. websock = Mux.App(Mux.mux( This leads to a socket left open when leaving the page, forcing a close in the exception covers up the error rather than fixing it: Mux/src/websockets_integration.jl |
@stefan911 Make a PR! It would be great to have a fix for this issue. |
Any request made using
webio_serve
and@app
times out. The same code withMux.stack
works.The text was updated successfully, but these errors were encountered: