Mark Bakhit
Mark Bakhit
I would disagree with an `AsyncAPIView` class. The best approach probably involves mimicking what Django Core is doing. That is, dynamically deciding whether to dispatch as `async` or `sync` based...
Hey @silviolleite , I'd like to see this PR reviewed & merged. Without this, `django-pwa` is not usable in any reverse proxy or auth scenario. Code changes are only one...
@silviolleite I am not the author for this PR, and the original author appears to be inactive on GH. The fix for the unit test is quite simple. Line 25...
Confirmed this issue occurs frequently on the latest release.
I don't believe it has to do with push notifications. Notifications do not cause any crashing behavior. Crashes only occur when opening the GUI.
@carltongibson I've confirmed this issue to be specific to Windows environments. #### Tested versions ```python Django == 3.2.4 - 3.2.7 Channels == 3.0.0 - 3.0.4 Asgiref == 3.3.0 - 3.4.1...
### Stack Trace The stack traces in my above comment could be related to a Python [standard lib limitation with the `pickle` library](https://stackoverflow.com/questions/8804830/python-multiprocessing-picklingerror-cant-pickle-type-function) , which is used by multiprocessing. It...
Andrew was pinged because this might be related to `django/django` based on my stack trace. Will need his input on whether an issue also needs to be raised over there....
@senechalloic That's not really a solution but a workaround. Each individual worker will still be blocking while serving each client request, but you now just have 8 workers that will...
@johnthagen You mentioned something about the functional tests on this repo being iffy. Do you think that might be the reason why the `test_create_dump_with_newline` in this PR doesn't appear to...