(zilch core magic): up the receive timeout

It turns out this was woefully low for large compiles.
This commit is contained in:
puck 2025-03-02 14:19:08 +00:00
parent 8a4cfe91fa
commit 6b7556be90

View file

@ -27,7 +27,7 @@
(define *daemon*
(make-parameter
(parameterize
((socket-send-buffer-size 4096) (socket-send-size 4096) (socket-receive-timeout 5000) (socket-send-timeout 5000))
((socket-send-buffer-size 4096) (socket-send-size 4096) (socket-receive-timeout 60000) (socket-send-timeout 5000))
(let ((unix-socket (socket af/unix sock/stream)))
(socket-connect unix-socket (unix-address "/nix/var/nix/daemon-socket/socket"))
(let-values (((in-port out-port) (socket-i/o-ports unix-socket)))