Aymeric Augustin
Aymeric Augustin
In a WebSocket connection you send HTTP headers only once. After you've upgraded from a HTTP to a HTTP connection you're fine.
The status of this is: - I'm not sure it's reasonable to write a custom SOCKS implementation (not sure what's involved exactly but I assume it isn't trivial). - I'm...
I looked at what a minimal client implementation of SOCKS v5 would involve. - SOCKS v5 - [RFC 1928](https://tools.ietf.org/html/rfc1928) looks doable. - Username / password authentication [RFC 1928](https://tools.ietf.org/html/rfc1929) is trivial....
An asyncio protocol protocol can be layered on top of another protocol. `WebSocketClientProtocol` could connect to a `SocksProtocol` which connects to a transport. Then we need a developer-friendly way to...
No progress.
I assume that `sphinx-me` is in setup.py to get an automagic setup. Its readme suggests that you could achieve the same effect with a requirements file.
I'm hitting the same issue when running tests with pytest and pytest-django.
To answer the questions above: - I believe this happens as soon as you integrate wagtail into an existing project having tests. It must be quite common. - Django doesn't...
To minimize the damage at this point, a solution might be to remove the FK constraint on the `wagtailsearch_editorspick` table in an additional migration in the `wagtailsearch` app, turning the...
FWIW I've been using this for years: ```python from django.db import connection from rq.worker import Worker class ConnectionClosingWorker(Worker): """ RQ Worker that closes the database connection before forking. See also...