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
{{ message }}
This repository has been archived by the owner on Aug 24, 2020. It is now read-only.
I have been experiencing very slow authentications (about 5 seconds) on one of my machines. It turns out that this is caused by socket.getfqdn(), which is used to get the qualified hostname of the current machine, e.g. "Timos-MacBook-Pro.local".
As described here, this seems to query the DNS on some system configurations, causing timeouts and long waiting times.
This could be resolved by exchanging getfqdn with gethostname.
The text was updated successfully, but these errors were encountered:
I have been experiencing very slow authentications (about 5 seconds) on one of my machines. It turns out that this is caused by
socket.getfqdn()
, which is used to get the qualified hostname of the current machine, e.g. "Timos-MacBook-Pro.local".As described here, this seems to query the DNS on some system configurations, causing timeouts and long waiting times.
This could be resolved by exchanging
getfqdn
withgethostname
.The text was updated successfully, but these errors were encountered: