Skip to content

Commit

Permalink
Merge pull request #1431 from pbiering/fix-1313
Browse files Browse the repository at this point in the history
catch "EBUSY" and move EAI_AGAIN
  • Loading branch information
pbiering authored Mar 12, 2024
2 parents eac1722 + 0750108 commit d6e295c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions radicale/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ def serve(configuration: config.Configuration,
isinstance(e, socket.gaierror) and (
# Hostname does not exist or doesn't have
# address for address family
# Linux: temporary failure in name resolution (-3)
e.errno == socket.EAI_AGAIN or
# macOS: IPv6 address for INET address family
e.errno == socket.EAI_NONAME or
# Address not for address family
Expand All @@ -309,10 +311,8 @@ def serve(configuration: config.Configuration,
# macOS: IPv4 address for INET6 address family with
# IPV6_V6ONLY set
e.errno == errno.EADDRNOTAVAIL or
# Temporary failure in name resolution
# can happen if "hosts" is using eg. "localhost"
# and only resolvable to an IPv4 address
e.errno == -3 or
# Device or resource busy (16)
e.errno == errno.EBUSY or
# Address family not supported
e.errno == errno.EAFNOSUPPORT or
# Protocol not supported
Expand Down

0 comments on commit d6e295c

Please sign in to comment.