(zilch magic): close the daemon connection when we're done with it

This commit is contained in:
puck 2025-06-23 12:22:20 +00:00
parent c7a92cb052
commit 6e4d191145

View file

@ -554,7 +554,7 @@
(cons (cons
(thread-start! (thread-start!
(make-thread (make-thread
(lambda () (call/cc (lambda (cc) (builder cc (daemon-connect))))) (lambda () (define thread-conn (daemon-connect)) (call/cc (lambda (cc) (builder cc thread-conn))) (daemon-close thread-conn))
(string-append "ca-builder-" (number->string i)))) (string-append "ca-builder-" (number->string i))))
builder-threads))) builder-threads)))