From 077bf8bc2508bc4b219c6824f541ee5c373da661 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 27 Apr 2020 17:00:21 +0100 Subject: Revert "Switch to the non-fibers web server" The non-fibers one processes requests sequentially, which just won't do. This reverts commit 2d2ae5b6b01081f35ad2fc25affdef8c876b48e6. --- guix-build-coordinator/agent-messaging/http.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'guix-build-coordinator') diff --git a/guix-build-coordinator/agent-messaging/http.scm b/guix-build-coordinator/agent-messaging/http.scm index a47c60d..19f0fdd 100644 --- a/guix-build-coordinator/agent-messaging/http.scm +++ b/guix-build-coordinator/agent-messaging/http.scm @@ -26,7 +26,7 @@ #:use-module (ice-9 textual-ports) #:use-module (ice-9 binary-ports) #:use-module (system repl error-handling) - #:use-module (web server) + #:use-module (fibers web server) #:use-module (rnrs bytevectors) #:use-module (json) #:use-module (web http) @@ -100,9 +100,8 @@ if there was no request body." datastore trigger-build-allocation hook-channel))) - 'fibers - (list #:host host - #:port port))) + #:host host + #:port port)) #:on-error 'backtrace #:post-error (lambda (key . args) (when (eq? key 'system-error) -- cgit v1.2.3