guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Ricardo Wurmus
Date: Mon, 26 Aug 2019 18:38:59 -0400 (EDT)

branch: master
commit 1cd2f9334dde13542732c22753c4ebde61bc95e0
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Aug 27 00:38:08 2019 +0200

    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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]