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
+1 -1
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;