You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are seeing test failures in CI when using anyio 4.4.0 which were OK with 4.3.0. Bisecting the anyio commits shows that the change in behaviour occurs at commit d3f38a7c which is PR agronholm/anyio#715. This emits a ResourceWarning for any MemoryObjectReceiveStream and MemoryObjectSendStream that are garbage collected before they are closed. The solution is to explicitly close the streams, I will submit a PR for this shortly.
The text was updated successfully, but these errors were encountered:
We are seeing test failures in CI when using anyio 4.4.0 which were OK with 4.3.0. Bisecting the anyio commits shows that the change in behaviour occurs at commit
d3f38a7c
which is PR agronholm/anyio#715. This emits aResourceWarning
for anyMemoryObjectReceiveStream
andMemoryObjectSendStream
that are garbage collected before they are closed. The solution is to explicitly close the streams, I will submit a PR for this shortly.The text was updated successfully, but these errors were encountered: