guix-commits
[Top][All Lists]
Advanced

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

branch master updated: database: Return true in db-register-builds proce


From: Mathieu Othacehe
Subject: branch master updated: database: Return true in db-register-builds procedure.
Date: Tue, 25 May 2021 07:54:24 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix-cuirass.

The following commit(s) were added to refs/heads/master by this push:
     new b1abb44  database: Return true in db-register-builds procedure.
b1abb44 is described below

commit b1abb4438b99fa4f5b0fcc0052015e69209e1ea0
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Tue May 25 13:53:53 2021 +0200

    database: Return true in db-register-builds procedure.
    
    * src/cuirass/database.scm (db-register-builds): Return true.
---
 src/cuirass/database.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/cuirass/database.scm b/src/cuirass/database.scm
index 701f9b1..1dffd77 100644
--- a/src/cuirass/database.scm
+++ b/src/cuirass/database.scm
@@ -897,7 +897,8 @@ WHERE Builds.status = " (build-status scheduled)
       ;; Register build dependencies after registering all the evaluation
       ;; derivations.
       (for-each register-dependencies new-jobs)
-      (exec-query db "COMMIT;"))))
+      (exec-query db "COMMIT;")
+      #t)))
 
 (define (db-get-last-status drv)
   "Return the status of the last completed build with the same 'job_name' and



reply via email to

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