Merge pull request #6576 from hercules-ci/daemon-increase-socket-backlog

Fix `Connection refused` on daemon socket
This commit is contained in:
Eelco Dolstra 2022-05-26 12:43:45 +02:00 committed by GitHub
commit 1e67582d75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1818,7 +1818,7 @@ AutoCloseFD createUnixDomainSocket(const Path & path, mode_t mode)
if (chmod(path.c_str(), mode) == -1)
throw SysError("changing permissions on '%1%'", path);
if (listen(fdSocket.get(), 5) == -1)
if (listen(fdSocket.get(), 100) == -1)
throw SysError("cannot listen on socket '%1%'", path);
return fdSocket;