guix-commits
[Top][All Lists]
Advanced

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

[no subject]


From: Ludovic Courtès
Date: Thu, 1 Jun 2023 18:43:48 -0400 (EDT)

branch: master
commit b719f7df4789c94491f299f28c35b6b248985348
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Jun 2 00:27:26 2023 +0200

    http: Remove unused variable.
    
    * src/cuirass/http.scm (url-handler): Remove unused 'params' variable.
---
 src/cuirass/http.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/cuirass/http.scm b/src/cuirass/http.scm
index cee0811..750c6dc 100644
--- a/src/cuirass/http.scm
+++ b/src/cuirass/http.scm
@@ -998,8 +998,7 @@ passed, only display JOBS targeting this SYSTEM."
            (respond-html-eval-not-found id))))
 
     (('GET "eval" (= string->number evaluation-id) "dashboard" dashboard-id)
-     (let* ((params (request-parameters request))
-            (eval (db-get-evaluation evaluation-id))
+     (let* ((eval (db-get-evaluation evaluation-id))
             (dashboard (db-get-dashboard dashboard-id)))
        (cond
         ((not eval)



reply via email to

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