summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/nf/biz/create_subscription.py
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2020-01-19 10:05:25 +0800
committeryangyan <yangyanyj@chinamobile.com>2020-01-19 10:05:34 +0800
commit1927708c03f343d60fb39506faed3abf130e226e (patch)
tree269754896ad31a717edbc413cf1ce99017367c01 /lcm/lcm/nf/biz/create_subscription.py
parent16099ce3041c8caf2b4b4b696b7fc191b6665c84 (diff)
Fix the vnflcm problem of registering MSB with HTTPS
Change-Id: I76aa32ea42e76a48049032e40139c7a4e5dbab1b Issue-ID: VFC-1502 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'lcm/lcm/nf/biz/create_subscription.py')
-rw-r--r--lcm/lcm/nf/biz/create_subscription.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcm/lcm/nf/biz/create_subscription.py b/lcm/lcm/nf/biz/create_subscription.py
index 5f981d0a..e999d6ed 100644
--- a/lcm/lcm/nf/biz/create_subscription.py
+++ b/lcm/lcm/nf/biz/create_subscription.py
@@ -27,7 +27,7 @@ from lcm.pub.database.models import SubscriptionModel
from lcm.pub.exceptions import NFLCMException
from lcm.pub.exceptions import NFLCMExceptionSeeOther
from lcm.pub.utils.values import ignore_case_get
-from lcm.pub.config.config import MSB_SERVICE_IP, MSB_SERVICE_PORT
+from lcm.pub.config.config import MSB_BASE_URL
logger = logging.getLogger(__name__)
@@ -122,7 +122,7 @@ class CreateSubscription:
for subscription in subscriptions:
if self.check_filter_exists(subscription):
links = json.loads(subscription.links)
- raise NFLCMExceptionSeeOther("http://%s:%s/%s" % (MSB_SERVICE_IP, MSB_SERVICE_PORT, links["self"]["href"]))
+ raise NFLCMExceptionSeeOther("%s/%s" % (MSB_BASE_URL, links["self"]["href"]))
return False
def save_db(self):