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

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

The following commit(s) were added to refs/heads/master by this push:
     new 1c806cc  evaluate: Enable channel authentication.
1c806cc is described below

commit 1c806cc64ea3a1fdc34a4cb332494f90c47c7f96
Author: Ludovic Courtès <[email protected]>
AuthorDate: Mon Nov 21 17:35:31 2022 +0100

    evaluate: Enable channel authentication.
    
    * src/cuirass/base.scm (process-specs): Remove #:authenticate? parameter
    to 'latest-channel-instances*'.
---
 src/cuirass/base.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/cuirass/base.scm b/src/cuirass/base.scm
index e68179c..5c8ee14 100644
--- a/src/cuirass/base.scm
+++ b/src/cuirass/base.scm
@@ -1,5 +1,5 @@
 ;;; base.scm -- Cuirass base module
-;;; Copyright © 2016, 2017, 2018, 2019 Ludovic Courtès <[email protected]>
+;;; Copyright © 2016, 2017, 2018, 2019, 2022 Ludovic Courtès <[email protected]>
 ;;; Copyright © 2016, 2017 Mathieu Lirzin <[email protected]>
 ;;; Copyright © 2017, 2020, 2021 Mathieu Othacehe <[email protected]>
 ;;; Copyright © 2017 Ricardo Wurmus <[email protected]>
@@ -709,8 +709,7 @@ specification."
              (channels (specification-channels spec))
              (instances (non-blocking
                          (log-info "Fetching channels for spec '~a'." name)
-                         (latest-channel-instances* store channels
-                                                    #:authenticate? #f)))
+                         (latest-channel-instances* store channels)))
              (new-channels (map channel-instance-channel instances))
              (new-spec (specification
                         (inherit spec)

Reply via email to