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
There seems to be a backport issue in the 3.11 and 3.12 branches. The loop argument is not passed to aiodns.DNSResolver despite this being the case on the master branch, leading to unexpected bugs when it is used.
The root causes is cherry-pick commit 17af047, where the AsyncResolver.__init__ changes were incorrectly merged from d26f16c, missing that loop had been removed as an explicit argument.
To Reproduce
N/A
Expected behavior
Code matches what is on master, using the passed-in loop.