Use msb.onap.org as msb address 45/38645/1
authorEthan Lynn <ethanlynnl@vmware.com>
Mon, 26 Mar 2018 19:30:08 +0000 (12:30 -0700)
committerEthan Lynn <ethanlynnl@vmware.com>
Mon, 26 Mar 2018 19:31:12 +0000 (12:31 -0700)
This patch will remove one vulnerability scaned by sonar

Change-Id: Ib7da230f262bd77ee839c4dcec7c9580eb97bbad
Issue-ID: MULTICLOUD-198
Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
multivimbroker/multivimbroker/pub/config/config.py
multivimbroker/multivimbroker/tests/test_restcall.py

index 192c743..f814528 100644 (file)
@@ -13,7 +13,7 @@
 import os
 
 # [MSB]
-MSB_SERVICE_IP = '127.0.0.1'
+MSB_SERVICE_IP = 'msb.onap.org'
 MSB_SERVICE_PORT = '10080'
 
 
index 8ac1948..ea70dff 100644 (file)
@@ -49,7 +49,7 @@ class TestRestCall(unittest.TestCase):
         content = "no content"
         headers = None
         restcall.req_by_msb(res, method, content=content, headers=headers)
-        expect_url = "http://127.0.0.1:10080/"
+        expect_url = "http://msb.onap.org:10080/"
         mock_call.assert_called_once_with(
             expect_url, "", "", restcall.rest_no_auth, res, method,
             content, headers)