Javad Shafique
Javad Shafique
In a recent project, we've experienced issues using the Date rule filter due to a depracated warning caused by the Date.php rule. ``` Deprecated... date_create_from_format(): Passing null to parameter #2...
The redis `XADD` command as specified by https://redis.io/commands/xadd/ supports additional parameters that allows for trimming in the same command as adding. It was covered in this issue https://github.com/phpredis/phpredis/issues/1894, and more...
gh-118950: Fix SSLProtocol.connection_lost not being called when OSError is thrown on asyncio.write.
Let _SSLProtocolTransport.is_closing reflect SSLProtocol internal transport closing state so that StreamWriter.drain will invoke sleep(0) which calls connection_lost and correctly notifies waiters of connection lost. (#118950) In an existing comment in...
`asyncio.sslproto._SSLProtocolTransport` can experience invalid state, leading to silent failures.
# Bug report ### Bug description: ## TL;DR `_SSLProtocolTransport.is_closing` should match its inner `_SelectorTransport.is_closing`, indicating to the user that the transport is actually closed instead of silently logging an error....
| Q | A | -------------------------------------- | --- | Bug fix? (use the a.b branch) | 🟢 | New feature/enhancement? (use the a.x branch) | 🔴 | Deprecations? | 🔴...
Hi, over the last couple of days i've seen a huge influx in worker processes that dies due to the same segmentation fault. This has sadly only been happening in...
As as a follow up to https://github.com/python/cpython/issues/118950, the fix to the issue in CPython's `asyncio` module seemed to translate quite well onto uvloop, and my failing tests effectively work both...
In certain conditions (MQTT over SSL, and also some websockets stuff) _keepalive is used as a socket timeout, which is all good until used with `0`, which triggers as #42...