Quiet handling and better message on unix socket bind error too.

This commit is contained in:
L. Kärkkäinen 2023-10-20 12:52:18 +01:00
parent e6c0f3990c
commit 69d493abce

View File

@ -47,10 +47,10 @@ def bind_unix_socket(path: str, *, mode=0o666, backlog=100) -> socket.socket:
path = os.path.abspath(path)
folder = os.path.dirname(path)
if not os.path.isdir(folder):
raise FileNotFoundError(f"Socket folder does not exist: {folder}")
raise FileNotFoundError("Socket folder does not exist")
try:
if not stat.S_ISSOCK(os.stat(path, follow_symlinks=False).st_mode):
raise FileExistsError(f"Existing file is not a socket: {path}")
raise FileExistsError("Existing file is not a socket")
except FileNotFoundError:
pass
# Create new socket with a random temporary name
@ -103,7 +103,10 @@ def configure_socket(
unix = server_settings["unix"]
backlog = server_settings["backlog"]
if unix:
try:
sock = bind_unix_socket(unix, backlog=backlog)
except OSError as e:
raise ServerError(f"Error binding {unix}: {e}", quiet=True)
server_settings["unix"] = unix
if sock is None:
try: