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
This change resolves an intermitent issue that happens on some hosts
where skyline refuses to start with the following error.
``` log
[2025-03-24 18:30:47 +0000].988 1 INFO [-] Starting gunicorn 23.0.0
[2025-03-24 18:30:47 +0000].988 1 ERROR [-] connection to /var/lib/skyline/skyline.sock failed: [Errno 95] Operation not supported
[2025-03-24 18:30:47 +0000].988 1 DEBUG [-] Retrying in 1 second.
[2025-03-24 18:30:48 +0000].989 1 ERROR [-] connection to /var/lib/skyline/skyline.sock failed: [Errno 95] Operation not supported
[2025-03-24 18:30:48 +0000].989 1 DEBUG [-] Retrying in 1 second.
[2025-03-24 18:30:49 +0000].990 1 ERROR [-] connection to /var/lib/skyline/skyline.sock failed: [Errno 95] Operation not supported
[2025-03-24 18:30:49 +0000].990 1 DEBUG [-] Retrying in 1 second.
[2025-03-24 18:30:50 +0000].991 1 ERROR [-] connection to /var/lib/skyline/skyline.sock failed: [Errno 95] Operation not supported
[2025-03-24 18:30:50 +0000].991 1 DEBUG [-] Retrying in 1 second.
[2025-03-24 18:30:51 +0000].992 1 ERROR [-] connection to /var/lib/skyline/skyline.sock failed: [Errno 95] Operation not supported
[2025-03-24 18:30:51 +0000].992 1 DEBUG [-] Retrying in 1 second.
[2025-03-24 18:30:52 +0000].993 1 ERROR [-] Can't connect to /var/lib/skyline/skyline.sock
```
The fix is to ensures that `reuse_port` is disabled. which will allow
skyline to bind to the socket.
Signed-off-by: Kevin Carter <[email protected]>
0 commit comments