AlexV
AlexV
I confirm I can reproduce with: ``` (env) debian@hostname:/opt/openwisp2$ pip list | grep -e 'daphne\|Django\|Twisted' daphne 4.2.0 Django 4.2.22 Twisted 24.11.0 ``` after installation, just running `supervisorctl restart daphne:asgi0` will...
related issue: https://github.com/django/daphne/issues/557 After installing daphne==4.1.2 the obvious logged problem went away, but supervisor still complains (although daphne is started properly it seems). this matches the behavior I had for...
Ok, so after fiddling around with this, I think the problem comes from the supervisor configuration for daphne. FWIW, on my setup (debian 12) supervisor is installed via apt at...
Quick update on this topic In my current deployments (on debian12, with some customisations...), running `daphne` as a `[program]` works fine, websocket connection can be established. However I am currently...
Hi, I stumbled upon this (or a similar ?) issue in my project ( some django channels test running with pytest asyncio): In my case `redis.asyncio.client.Redis.execute_command` is called, and in...
Thanks ! I managed to revoke running tasks on worker shutdown. : ``` python def stop(self, worker): # the Consumer calls stop every time the consumer is restarted # (i.e....
@nemesifier The error is still useful to have to force the user to debug issues with the menu, which can occur when working with extended apps... What I ended up...