From e8bbe07b4238656567b60609399bf8e8919cb759 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 9 Jun 2021 14:47:19 +0200 Subject: [PATCH] [bootstrap] Re-direct miniconda installation through reverse proxy --- bob/devtools/bootstrap.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index e0eea82f..0308916b 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -232,22 +232,25 @@ def ensure_miniconda_sh(): # re-downloads installer import http.client - server = "www.idiap.ch" # http + server = ("bobconda.lab.idiap.ch", 8000) # http - logger.info("Connecting to http://%s...", server) - conn = http.client.HTTPConnection(server) + logger.info("Connecting to http://%s:%d...", *server) + conn = http.client.HTTPConnection(server[0], port=server[1]) conn.request("GET", path) r1 = conn.getresponse() - assert r1.status == 200, "Request for http://%s%s - returned status %d " "(%s)" % ( - server, + assert ( + r1.status == 200 + ), "Request for http://%s:%d%s - returned status %d " "(%s)" % ( + server[0], + server[1], path, r1.status, r1.reason, ) dst = "miniconda.sh" - logger.info("(download) http://%s%s -> %s...", server, path, dst) + logger.info("(download) http://%s:%d%s -> %s...", server[0], server[1], path, dst) with open(dst, "wb") as f: f.write(r1.read()) -- GitLab