diff options
author | Gary Wu <gwu@futurewei.com> | 2019-05-28 17:22:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-05-28 17:22:50 +0000 |
commit | 8a0cfc9b928b57d1e950774d6a7e4ad8d9a81fac (patch) | |
tree | 18c62b80da247af2531feed9bff6897d9580babd /tests/dcaegen2/prh-testcases/resources/simulator/AAI.py | |
parent | 7027bed4a8d1a34a49a268999f0cc28fdff99f0e (diff) | |
parent | 0fc9eab94f101a9713c951b3c159065c72a31495 (diff) |
Merge "Use single PRH container with ssl configuration Generating new certificates since the old ones have expired"
Diffstat (limited to 'tests/dcaegen2/prh-testcases/resources/simulator/AAI.py')
-rw-r--r-- | tests/dcaegen2/prh-testcases/resources/simulator/AAI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py b/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py index 4457ef15..ff368034 100644 --- a/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py +++ b/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py @@ -143,7 +143,7 @@ class AAIHandler(BaseHTTPRequestHandler): def _main_(handler_class=AAIHandler, protocol="HTTP/1.0"): handler_class.protocol_version = protocol httpServerLib.start_http_endpoint(3333, AAIHandler) - httpServerLib.start_https_endpoint(3334, AAIHandler, keyfile="certs/org.onap.aai.key", certfile="certs/aai_aai.onap.org.cer", ca_certs="certs/ca_local_0.cer") + httpServerLib.start_https_endpoint(3334, AAIHandler, keyfile="certs/aai.key", certfile="certs/aai.crt", ca_certs="certs/root.crt") httpServerLib.start_http_endpoint(3335, AAISetup) while 1: time.sleep(10) |