aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 "<(.*?)>;?(.*)"))