Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果几秒钟没有响应,Django 通道会断开客户端。但我找不到在哪里设置这个时间限制。我检查了这个问题。它说它将是可配置的。但我找不到在哪里设置该限制。谢谢你
我通过修改达芙妮的代码并重新安装它来解决这个问题。
从 github 下载 daphne 源代码
根据您的需要更改ping_interval,ping_timeout。server.py默认为 20,30(以秒为单位)
ping_interval,ping_timeout
server.py
pip install -e /path/to/daphne/(where setup.py is located) 使用Thats all安装 daphne !
pip install -e /path/to/daphne/(where setup.py is located)
`