aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2025-02-26 18:40:56 +0000
committerChristopher Baines <mail@cbaines.net>2025-02-26 18:40:56 +0000
commitbd0ad40e1755264f09741a21d5f84f6b73df82d2 (patch)
tree6e768b1a40880f87e6da01fbacd93647c894a7c9
parent06abe759c2f7fa21ab86404050e19602d8241bb8 (diff)
downloadqa-frontpage-bd0ad40e1755264f09741a21d5f84f6b73df82d2.tar
qa-frontpage-bd0ad40e1755264f09741a21d5f84f6b73df82d2.tar.gz
Try and avoid using https
As GnuTLS is currently implicated in all of the segfaults I've looked at, so hopefully less https will mean less segfaults.
-rw-r--r--guix-qa-frontpage/guix-data-service.scm3
-rw-r--r--guix-qa-frontpage/patchwork.scm3
2 files changed, 4 insertions, 2 deletions
diff --git a/guix-qa-frontpage/guix-data-service.scm b/guix-qa-frontpage/guix-data-service.scm
index 8540524..abefd77 100644
--- a/guix-qa-frontpage/guix-data-service.scm
+++ b/guix-qa-frontpage/guix-data-service.scm
@@ -63,7 +63,8 @@
package-reproducibility-url))
(define %data-service-url-base
- "https://data.qa.guix.gnu.org")
+ ;; TODO Use https when this doesn't cause segfaults
+ "http://data.qa.guix.gnu.org")
(define %data-service-guix-repository-id 1)
diff --git a/guix-qa-frontpage/patchwork.scm b/guix-qa-frontpage/patchwork.scm
index e1ee24f..724e6f3 100644
--- a/guix-qa-frontpage/patchwork.scm
+++ b/guix-qa-frontpage/patchwork.scm
@@ -30,7 +30,8 @@
latest-patchwork-series-for-issue))
(define %patchwork-instance
- (make-parameter "https://patches.guix-patches.cbaines.net"))
+ ;; TODO Use https when this doesn't cause segfaults
+ (make-parameter "http://patches.guix-patches.cbaines.net"))
(define %link-regex
(make-regexp "<(.*?)>;?(.*)"))