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 should offer a utils.wait_for function that uses asyncio.timeout if available to avoid these problematic cases. All occurrences of asyncio.wait_for in our code base should then be replaced by this.
Python 3.11 introduced the
asyncio.timeout
which resolves a couple of consistency issues withasyncio.wait_for
, see#6235
Closes #6211 (for python 3.11)
We should offer a
utils.wait_for
function that usesasyncio.timeout
if available to avoid these problematic cases. All occurrences ofasyncio.wait_for
in our code base should then be replaced by this.cc @graingert
The text was updated successfully, but these errors were encountered: