aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-08-16 12:44:24 +0530
committerArun Isaac2022-08-16 12:44:24 +0530
commit7a64d734100bf92bc6aab6a2415da546b00810d4 (patch)
tree5a92d80071f25015f6b4f8d3b3fe845589a7176f
parent5cd33ed762f6fe1301f6e5bb615eb9101012af23 (diff)
downloadgn-machines-7a64d734100bf92bc6aab6a2415da546b00810d4.tar.gz
Add trailing slash to GN_PROXY_URL.
The urljoin function reduces a URL without a trailing slash to just the base, e.g. "http://genenetwork.org/gn3-proxy" is reduced to "http://genenetwork.org", which is not what we want. * genenetwork-development.scm (genenetwork2-tests): Add trailing slash to GN_PROXY_URL.
-rw-r--r--genenetwork-development.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm
index e1a3add..a88345e 100644
--- a/genenetwork-development.scm
+++ b/genenetwork-development.scm
@@ -208,7 +208,7 @@ to be executed."
#$(profile
(content (package->development-manifest genenetwork2))
(allow-collisions? #t)))
- (setenv "GN_PROXY_URL" "http://genenetwork.org/gn3-proxy")
+ (setenv "GN_PROXY_URL" "http://genenetwork.org/gn3-proxy/")
(setenv "GN3_LOCAL_URL" "http://localhost:9093")
(setenv "GENENETWORK_FILES" #$%genotype-files)
(setenv "HOME" "/tmp")