guix-commits
[Top][All Lists]
Advanced

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

branch master updated: Copy some of the initialisation from (guix git)


From: Christopher Baines
Subject: branch master updated: Copy some of the initialisation from (guix git)
Date: Wed, 11 Oct 2023 11:34:24 -0400

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

cbaines pushed a commit to branch master
in repository data-service.

The following commit(s) were added to refs/heads/master by this push:
     new 70f1824  Copy some of the initialisation from (guix git)
70f1824 is described below

commit 70f1824e464ae595e5fc796ef3ede2693c325b0d
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Wed Oct 11 16:33:53 2023 +0100

    Copy some of the initialisation from (guix git)
    
    To go along with just-update-cached-checkout.
---
 guix-data-service/poll-git-repository.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/guix-data-service/poll-git-repository.scm 
b/guix-data-service/poll-git-repository.scm
index ddc6aa7..399299d 100644
--- a/guix-data-service/poll-git-repository.scm
+++ b/guix-data-service/poll-git-repository.scm
@@ -22,11 +22,7 @@
   #:use-module (srfi srfi-71)
   #:use-module (ice-9 threads)
   #:use-module (squee)
-  #:use-module (git oid)
-  #:use-module (git branch)
-  #:use-module (git remote)
-  #:use-module (git reference)
-  #:use-module (git repository)
+  #:use-module (git)
   #:use-module (guix git)
   #:use-module (guix channels)
   #:use-module (guix-data-service database)
@@ -39,6 +35,9 @@
 (define (start-thread-to-poll-git-repository git-repository-id)
   (call-with-new-thread
    (lambda ()
+     (libgit2-init!)
+     (honor-system-x509-certificates!)
+
      (with-postgresql-connection
       (simple-format #f "poll-git-repository-~A"
                      git-repository-id)



reply via email to

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