diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-12-15 12:02:21 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-12-15 12:02:21 +0800 |
commit | e31910c7cd2be40eeea4d0bef514558a18f9c269 (patch) | |
tree | 7d2166c695139bc38ec0650fd0a95b7904255734 | |
parent | 0e32012d2b0238bb2662f5d0ac44666b99732e8c (diff) |
Fix vfc-nslcm csit failure
Change-Id: Iccaefe5c24e1513988ce55532675622d1517ca8d
Issue-ID: VFC-623
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r-- | lcm/pub/config/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lcm/pub/config/config.py b/lcm/pub/config/config.py index be47c1ea..a7213400 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 = "http://%s:%s/aai/v11" % (MSB_SERVICE_IP, MSB_SERVICE_PORT) +AAI_BASE_URL = "http://127.0.0.1:80/aai/v11" AAI_USER = "AAI" AAI_PASSWD = "AAI" REPORT_TO_AAI = True # [sdc config] -SDC_BASE_URL = "http://%s:%s/api" % (MSB_SERVICE_IP, MSB_SERVICE_PORT) +SDC_BASE_URL = "http://127.0.0.1:80/api" SDC_USER = "SDC" SDC_PASSWD = "SDC" |