(zilch core magic): up the receive timeout
It turns out this was woefully low for large compiles.
This commit is contained in:
parent
8a4cfe91fa
commit
6b7556be90
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@
|
||||||
(define *daemon*
|
(define *daemon*
|
||||||
(make-parameter
|
(make-parameter
|
||||||
(parameterize
|
(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)))
|
(let ((unix-socket (socket af/unix sock/stream)))
|
||||||
(socket-connect unix-socket (unix-address "/nix/var/nix/daemon-socket/socket"))
|
(socket-connect unix-socket (unix-address "/nix/var/nix/daemon-socket/socket"))
|
||||||
(let-values (((in-port out-port) (socket-i/o-ports unix-socket)))
|
(let-values (((in-port out-port) (socket-i/o-ports unix-socket)))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue