From: Zhang Rong(Jon) Date: Thu, 10 Nov 2022 08:48:53 +0000 (+0800) Subject: Fix INF-351 ocloud serviceUri is wrong about protocol X-Git-Tag: 2.0.0-rc2~30^2 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=105b23b181c24df87bbc55cfceb906483c89917c;p=pti%2Fo2.git Fix INF-351 ocloud serviceUri is wrong about protocol Issue-ID: INF-351 Signed-off-by: Zhang Rong(Jon) Change-Id: I30f2305bfad452e75685bbcb14b839832a0ebff4 --- diff --git a/o2common/config/config.py b/o2common/config/config.py index 690f4e9..f488b71 100644 --- a/o2common/config/config.py +++ b/o2common/config/config.py @@ -56,7 +56,7 @@ def get_api_url(): port_external = 30205 port = port_internal if host_external is None or host_external == '' \ else port_external - return f"http://{host}:{port}" + return f"https://{host}:{port}" def get_root_api_base():