senechalloic
senechalloic
Hi @carltongibson Thanks a lot for your response that helps me a lot. This looks really a lot like other issues you mentioned, I will follow these issues. Thanks for...
### New tests Hello, I have tested: - Serve Django views using a WSGI server, using Daphne/ASGI just for the Channels. - Reverting back to Channels 2.X / Daphne 2.X...
### Final solution For anyone having the same issue. I found out using Uvicorn: `uvicorn myApp.asgi:application --workers=8 --port 8443 --ssl-keyfile=key.pem --ssl-certfile=crt.pem` Instead of daphne: `daphne -e ssl:8443:privateKey=key.pem:certKey=crt.pem -b 0.0.0.0 myApp.asgi:application`...
Yes it's a workaround. And this didn't really help, as you mentionned. Requests were treated sequentially, not concuratly, like mentioned in issue #1587 What **saved my live**, in this project,...