diff options
author | Arun Isaac | 2022-08-16 12:44:24 +0530 |
---|---|---|
committer | Arun Isaac | 2022-08-16 12:44:24 +0530 |
commit | 7a64d734100bf92bc6aab6a2415da546b00810d4 (patch) | |
tree | 5a92d80071f25015f6b4f8d3b3fe845589a7176f | |
parent | 5cd33ed762f6fe1301f6e5bb615eb9101012af23 (diff) | |
download | gn-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.scm | 2 |
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") |