Jörn Heissler
Jörn Heissler
Thanks! But is that a fix or is it a workaround? :-)
> Likely no one has ever thought to manually cancel a fail_after(). Would you describe your use case? In a nutshell: There's a long running task (might run infinitely). When...
Hello, I need to mirror a repository which whitelists one specific user agent. But my aptly installation mirrors several other repos and I don't want to use the special user...
python3.8 added https://docs.python.org/3/library/functools.html#functools.cached_property which does the same. Thanks for creating this package years ago!
I think duplicate of #183. Each mqtt client means 3 open file descriptors: one to the mqtt server, and a pair of sockets connected to each other. 3 * 340...
I'm using asyncio. I didn't try with more than 1 connection, but I don't see why it shouldn't work.
> it seems like if it is FD_SETSIZE that's limiting us, it's not obvious how. It's in the select manpage. select doesn't like larger FDs. I looked at the kernel...
So I wrote a program which opens 1500 useless file descriptors and then 1 mqtt connection, with asyncio. Works as expected. Got code which won't work for you?
I think eventfd is a linux-only feature.
Hello, ```python cert_bytes = ssl.get_server_certificate(('dcnorse.ddns.net', 8443)).encode() cert_asn1crypto = asn1crypto.x509.Certificate.load(cert_bytes) ``` This won't work because `load` expects a BER/DER encoded value, but you're supplying PEM. This will suffice to reproduce your...