summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2017-11-29 09:13:59 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2017-11-29 09:20:51 +0800
commitf8d29a66c886b51a24cae15ee1ac9a3da17c7ebc (patch)
tree211f4ea8c41acaeafb22fbf50fba89062ad35b07
parent0005a63e02f4afc36d013ca53feaea7073cd9e00 (diff)
Fix vfc-lcm url replace
Change-Id: If0f22d33b12695959edbf18fbc505c5eafb2e5f6 Issue-ID: VFC-596 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r--lcm/pub/config/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcm/pub/config/config.py b/lcm/pub/config/config.py
index b7c18162..be47c1ea 100644
--- a/lcm/pub/config/config.py
+++ b/lcm/pub/config/config.py
@@ -57,13 +57,13 @@ CATALOG_ROOT_PATH = None
CATALOG_URL_PATH = None
# [aai config]
-AAI_BASE_URL = "https://127.0.0.1:8443/aai/v11"
+AAI_BASE_URL = "http://%s:%s/aai/v11" % (MSB_SERVICE_IP, MSB_SERVICE_PORT)
AAI_USER = "AAI"
AAI_PASSWD = "AAI"
REPORT_TO_AAI = True
# [sdc config]
-SDC_BASE_URL = "https://127.0.0.1:8443/api/sdc/v1"
+SDC_BASE_URL = "http://%s:%s/api" % (MSB_SERVICE_IP, MSB_SERVICE_PORT)
SDC_USER = "SDC"
SDC_PASSWD = "SDC"