Devid
Devid
I have tried the latest release (2.17.0) and this FP seems to be gone, but I cannot find any reference in the release notes https://github.com/PyCQA/pylint/releases/tag/v2.17.0
Are there any active maintainers of this project at the moment? Is there any planned upcoming release?
I am experimenting this issue within a daphne instance which only runs consumers for websockets using a customized (derived) version of `RedisChannelLayer`. The code which is execute does (shall?) not...
@carltongibson thank you for the suggestion. However I am a bit concerned that this may be a bit dirty to force users to call this method when using `async_to_sync` because...
@carltongibson I will see if I can get a time slot for this and open a PR. I would like to find a way to merge the connection management algorithms...
There are a couple of configs which conflicts with #854 https://github.com/axnsan12/drf-yasg/blob/6557517cdf02d8ef48d24a019d4778c4a3cd496e/src/drf_yasg/app_settings.py#L22-L28 As of now these are still pinned to the old coreapi ones, this causes swagger generation to crash due...
That line does not need to alter the `data` since it just a validation check to ensure that provided data is JSON-serializable. https://github.com/encode/django-rest-framework/blob/40eccb0d6cdb769876dbb79724c5871b4f04163d/rest_framework/fields.py#L1776-L1785 The method does the following: 1. check...
This is not a problem of rest-framework rather an issue with the SQLite installation. If you cannot update SQLite I suggest to use the legacy jsonfield https://github.com/rpkilby/jsonfield/ which should map...
The `.paginate_queryset` which the `ListModelMixin` is expecting is that of `GenericAPIView` not any of a pagination class. https://github.com/encode/django-rest-framework/blob/5a01a4c8a900a98ca0186b742d03d02c55846632/rest_framework/generics.py#L169-L175 This is not required. TL; DR: mixins are to be used with...
Now it was triggered but tests failed for something which does not seems related to this PR 🤔