[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Ludovic Courtès |
Date: |
Sat, 27 Jan 2018 13:31:59 -0500 (EST) |
branch: master
commit a8c2a8fda6cc086f7056e92c1fbc781dcc9bd83a
Author: Ludovic Courtès <address@hidden>
Date: Sat Jan 27 19:31:06 2018 +0100
cuirass: Place web server fiber on its own core.
* bin/cuirass.in (main): Pass #:parallel? to 'spawn-fiber' for the web
server.
---
bin/cuirass.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bin/cuirass.in b/bin/cuirass.in
index 4431a60..580c2be 100644
--- a/bin/cuirass.in
+++ b/bin/cuirass.in
@@ -139,7 +139,8 @@ exec ${GUILE:address@hidden@} --no-auto-compile -e main -s
"$0" "$@"
'web-server exit-channel
(lambda ()
(with-database db
- (run-cuirass-server db #:host host #:port port)))))
+ (run-cuirass-server db #:host host #:port port))))
+ #:parallel? #t)
(primitive-exit (get-message exit-channel))))))