diff options
author | 2020-04-20 16:28:21 +0800 | |
---|---|---|
committer | 2020-04-20 16:30:56 +0800 | |
commit | 3ff968b21a477944ed66b4261f5d9c9a182eb954 (patch) | |
tree | 5d889f4761ff6d591a0da490f8cbc9dfcdc3ff0f /catalog/pub | |
parent | 9d63f079341419d875ac5e697cefde920d26c802 (diff) |
1. fix the url of links in VNF
2. fix the log of notification
3. fix the SDC_USER
Issue-ID: MODELING-356
Change-Id: I7c664768f42df91ef154c37b80521e40b875da9a
Signed-off-by: dyh <dengyuanhong@chinamobile.com>
Diffstat (limited to 'catalog/pub')
-rw-r--r-- | catalog/pub/config/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/catalog/pub/config/config.py b/catalog/pub/config/config.py index 3b8a59e..a4a8ce5 100644 --- a/catalog/pub/config/config.py +++ b/catalog/pub/config/config.py @@ -13,8 +13,10 @@ # limitations under the License. # [MSB] +MSB_SERVICE_PROTOCOL = 'https' MSB_SERVICE_IP = '127.0.0.1' MSB_SERVICE_PORT = '80' +MSB_BASE_URL = "%s://%s:%s" % (MSB_SERVICE_PROTOCOL, MSB_SERVICE_IP, MSB_SERVICE_PORT) # [REDIS] # REDIS_HOST = '127.0.0.1' @@ -92,7 +94,7 @@ CATALOG_URL_PATH = None # [sdc config] SDC_BASE_URL = "https://msb-iag/api" -SDC_USER = "aai" +SDC_USER = "modeling" SDC_PASSWD = "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" VNFD_SCHEMA_VERSION_DEFAULT = "base" |