From a45c1f3a4a3200e1a0c4a0d5feb9e67d8e79f52f Mon Sep 17 00:00:00 2001 From: "Zhang Rong(Jon)" Date: Thu, 10 Nov 2022 16:48:53 +0800 Subject: [PATCH] Fix INF-351 ocloud serviceUri is wrong about protocol Issue-ID: INF-351 Signed-off-by: Zhang Rong(Jon) Change-Id: I30f2305bfad452e75685bbcb14b839832a0ebff4 --- o2common/config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(): -- 2.16.6