daphne icon indicating copy to clipboard operation
daphne copied to clipboard

Django Channels HTTP/WebSocket server

Results 61 daphne issues
Sort by recently updated
recently updated
newest added

I am using Debian packaged versions (Debian 12 Bullseye) using: - daphne 4.0.0 - django 3.2.19 - python 3.11.2 The problem happens when using Django with daphne (debugging with runserver...

I believe this fixes #287. The changes I've made to tests and setuptools automatic package discovery may be a little messy still.

Similar logs already exist in the rest of the application. It would help to trace some unexplained websocket disconnection.

Commits to move forward #116. Convert the access log to use the python logging framework. Also pass data as named components to make it easier for JSON formatting

Does daphne have a file for initialization, so I don't have to type a lot of code on the command line every time I start the server

i want to send camera captured image by websocket in daphne django channel when the image is big size for base64, websocket go in error, so how to large the...

I have everything set up correctly, but the project does not run as async System check identified no issues (0 silenced). April 10, 2024 - 18:56:40 Django version 4.2.8, using...

In `setup.cfg` `packages = find:` was changed to ``` packages = daphne twisted.plugins ``` When manually list packages, should enumerate all the packages ``` packages = daphne daphne.management twisted.plugins ```

When running `./manage.py runserver --noasgi` I don't get static files served. This is because both `daphne` and `django.contrib.staticfiles` provides a `runserver` replacement. Running daphne's runserver with `--noasgi` just cause the...

I have configured a simple demo project according to the [Channel documentation](https://channels.readthedocs.io/en/latest/introduction.html). I hope that after the client successfully connects, it will receive a ping message sent from the server...