From 6162003d1095f925f1694d928766aadde397c389 Mon Sep 17 00:00:00 2001 From: DaliCHEBBI Date: Mon, 20 Oct 2025 15:46:41 +0200 Subject: [PATCH 1/2] change gpao hostname handling --- altianalysis/run_difference_with_gpao.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/altianalysis/run_difference_with_gpao.py b/altianalysis/run_difference_with_gpao.py index 08902c9..000c3e3 100644 --- a/altianalysis/run_difference_with_gpao.py +++ b/altianalysis/run_difference_with_gpao.py @@ -178,7 +178,11 @@ def compute_on_gpao( builder.save_as_json(out / "gpao_project.json") logging.info(f"Send projects to gpao server: {gpao_hostname}") - builder.send_project_to_api(f"http://{gpao_hostname}:8080") + + if not gpao_hostname.lower().startswith("http"): + builder.send_project_to_api(f"http://{gpao_hostname}:8080") + else: + builder.send_project_to_api(gpao_hostname) def parse_args(): From 3fdbcaff4811ea6a20444c2b7ede7f00c6c3c7b5 Mon Sep 17 00:00:00 2001 From: DaliCHEBBI Date: Mon, 20 Oct 2025 17:02:48 +0200 Subject: [PATCH 2/2] update changes in CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d6f60f..a45dcac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # master +-fix : handle URL with HTTPS (not only HTTP) # 1.2.0 -feature: handle two folders of DEMs for difference computation