diff options
author | dyh <dengyuanhong@chinamobile.com> | 2020-04-21 09:45:05 +0800 |
---|---|---|
committer | dyh <dengyuanhong@chinamobile.com> | 2020-04-21 09:46:58 +0800 |
commit | c21736556404f4ec9a5aadeb0b551bf8f158f660 (patch) | |
tree | 882f12a858f6b2aaab93d5393d38a59c43f8909f | |
parent | 3ff968b21a477944ed66b4261f5d9c9a182eb954 (diff) |
fix the value of MSB_SERVICE_PROTOCOL
Issue-ID: MODELING-356
Change-Id: I7620d469d83c7d776acb0533d8acdf166df3b2ff
Signed-off-by: dyh <dengyuanhong@chinamobile.com>
-rw-r--r-- | catalog/pub/config/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog/pub/config/config.py b/catalog/pub/config/config.py index a4a8ce5..dcc6cc1 100644 --- a/catalog/pub/config/config.py +++ b/catalog/pub/config/config.py @@ -13,7 +13,7 @@ # limitations under the License. # [MSB] -MSB_SERVICE_PROTOCOL = 'https' +MSB_SERVICE_PROTOCOL = 'http' 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) |