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
Users with their DNS set as Cloudflare are experiencing +~6s per player when requesting players.
If aiohttp isn't told to use a TCPConnector of the AF_INET6 class, it takes longer to resolve the ip addres. Because some afaik Cloudflare doesn't like IPv4.
So just import the constant that represents the AF_NET6 family from socket and replace
From phiwijo
The text was updated successfully, but these errors were encountered:
That wrong btw :D
The actual issue is that cloudflare only answers with an AAAA record if you ask for both A and AAAA at the same time but both are expected.
Or however you want to interpret this:
For contrast:
This is when I use the DNS of my ISP
You can prevent it by using a TCPConnecter that only uses IPv6 or IPv4
Users with their DNS set as Cloudflare are experiencing +~6s per player when requesting players.
The text was updated successfully, but these errors were encountered: