From 1cd2f9334dde13542732c22753c4ebde61bc95e0 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 27 Aug 2019 00:38:08 +0200 Subject: http: Fix type error. This is a follow-up to commit c6f4fa5f577e4752d845fa3ce17c68fcd2079904. * src/cuirass/http.scm (url-handler): SPECIFICATIONS-TABLE expects a list, not a vector. --- src/cuirass/http.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cuirass/http.scm b/src/cuirass/http.scm index a26b1c6..d87bcb3 100644 --- a/src/cuirass/http.scm +++ b/src/cuirass/http.scm @@ -317,7 +317,7 @@ Hydra format." (respond-html (html-page "Cuirass" (specifications-table - (list->vector (db-get-specifications))) + (db-get-specifications)) '()))) (("jobset" name) -- cgit v1.2.3