diff options
author | seshukm <seshu.kumar.m@huawei.com> | 2018-09-01 14:05:04 +0800 |
---|---|---|
committer | seshukm <seshu.kumar.m@huawei.com> | 2018-09-01 14:05:04 +0800 |
commit | 0c5c12ce1b84a1a26362eac5c98d9eb47d8b0ec3 (patch) | |
tree | a3af753cfdfe435640aecf75eb2444f23af83cc8 | |
parent | 2380d2c2a94be01b0609038d08bf8fcd1fc0c4e4 (diff) |
fix IP with AAI DNS
Change-Id: I85a78cc14dd3b5528c2aac03efc81f1c60647d2f
Issue-ID: OPTFRA-316
Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
-rw-r--r-- | osdf/optimizers/routeopt/simple_route_opt.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/osdf/optimizers/routeopt/simple_route_opt.py b/osdf/optimizers/routeopt/simple_route_opt.py index adf33e4..9560996 100644 --- a/osdf/optimizers/routeopt/simple_route_opt.py +++ b/osdf/optimizers/routeopt/simple_route_opt.py @@ -26,7 +26,9 @@ class RouteOpt: This values will need to deleted.. only added for the debug purpose """ - aai_host = "https:\\192.168.17.26:8443" + # DNS server and standard port of AAI.. + # TODO: read the port from the configuration and add to DNS + aai_host = "https://aai.api.simpledemo.onap.org:8443" aai_headers = { "X-TransactionId": "9999", "X-FromAppId": "OOF", |