Commit 1635e9cc authored by Charles-François Natali's avatar Charles-François Natali

Issue #13453: Catch EAI_FAIL in support.transient_internet.

parents 7f1c15b8 13859bfe
......@@ -951,6 +951,7 @@ def transient_internet(resource_name, *, timeout=30.0, errnos=()):
]
default_gai_errnos = [
('EAI_AGAIN', -3),
('EAI_FAIL', -4),
('EAI_NONAME', -2),
('EAI_NODATA', -5),
# Encountered when trying to resolve IPv6-only hostnames
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment