diff options
author | Liang Ke <lokyse@163.com> | 2018-03-27 02:25:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-27 02:25:44 +0000 |
commit | 6fd4a4fdd5d48bc6de3293e097d8dd8729558b9d (patch) | |
tree | 590e8bf22799d74233ed31f483646c478c461b21 /multivimbroker | |
parent | 9308081c2753747c375adfaad698eb9e3309ca34 (diff) | |
parent | ffb081ac0880987d1ab8ea11c90e52eb8a8d1db5 (diff) |
Merge "Use msb.onap.org as msb address"
Diffstat (limited to 'multivimbroker')
-rw-r--r-- | multivimbroker/multivimbroker/pub/config/config.py | 2 | ||||
-rw-r--r-- | multivimbroker/multivimbroker/tests/test_restcall.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/multivimbroker/multivimbroker/pub/config/config.py b/multivimbroker/multivimbroker/pub/config/config.py index 192c743..f814528 100644 --- a/multivimbroker/multivimbroker/pub/config/config.py +++ b/multivimbroker/multivimbroker/pub/config/config.py @@ -13,7 +13,7 @@ import os # [MSB] -MSB_SERVICE_IP = '127.0.0.1' +MSB_SERVICE_IP = 'msb.onap.org' MSB_SERVICE_PORT = '10080' diff --git a/multivimbroker/multivimbroker/tests/test_restcall.py b/multivimbroker/multivimbroker/tests/test_restcall.py index 8ac1948..ea70dff 100644 --- a/multivimbroker/multivimbroker/tests/test_restcall.py +++ b/multivimbroker/multivimbroker/tests/test_restcall.py @@ -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) |