From: yangyan Date: Fri, 14 Feb 2020 08:10:22 +0000 (+0800) Subject: Modify vnflcm typo error X-Git-Tag: 1.3.7~4 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vfc%2Fgvnfm%2Fvnflcm.git;a=commitdiff_plain;h=4c6798812e146d7fd8228bb9406e899a9b57fb39 Modify vnflcm typo error Change-Id: I343229f67f339582496923a681bd40be53e70004 Issue-ID: VFC-1621 Signed-off-by: yangyan --- diff --git a/lcm/docker/instance_config.sh b/lcm/docker/instance_config.sh index 6e468843..64543a40 100755 --- a/lcm/docker/instance_config.sh +++ b/lcm/docker/instance_config.sh @@ -12,7 +12,6 @@ if [ $MSB_PROTO ]; then sed -i "s|MSB_SERVICE_PROTOCOL = .*|MSB_SERVICE_PROTOCOL = '$MSB_PROTO'|" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py fi - if [ $MSB_PORT ]; then sed -i "s|MSB_SERVICE_PORT = .*|MSB_SERVICE_PORT = '$MSB_PORT'|" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py fi diff --git a/lcm/lcm/pub/config/config.py b/lcm/lcm/pub/config/config.py index b153aee8..b14a9e86 100644 --- a/lcm/lcm/pub/config/config.py +++ b/lcm/lcm/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 = '443' MSB_BASE_URL = "%s://%s:%s" % (MSB_SERVICE_PROTOCOL, MSB_SERVICE_IP, MSB_SERVICE_PORT)