I have a problem using django and channels(in asgi mode) when I set django channels and use asgi mode, my app create a new thread for every http request and every message that I send from channel
for example suppose that my app is a simple echo chat server when I run my server and request to connect to socket as client, threads increased and also when I send something to socket again thread increased by every message.
Do you know why? How can I fix or limit it?