diff options
author | Jim Hahn <jrh3@att.com> | 2020-03-26 16:19:23 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-03-26 17:17:22 -0400 |
commit | fce5f0c0d73ea349954399f623fa1d97597b4f0f (patch) | |
tree | 0cbbb76603dff80b307188e91ca2ab3258918bd9 /controlloop/common/controller-frankfurt/src/test | |
parent | 266520e74db287e0d1fd0ce3715088ce9ffcc883 (diff) |
Fix userName property for http clients
The http client property files had "username", but the correct
property name is "userName". Fixed.
Also updated the models version to the latest snapshot to pick
up the fix to the APPC actor.
Issue-ID: POLICY-2441
Signed-off-by: Jim Hahn <jrh3@att.com>
Change-Id: I4d64efcb5b639526beb145ee0231c6d650098d0f
Diffstat (limited to 'controlloop/common/controller-frankfurt/src/test')
-rw-r--r-- | controlloop/common/controller-frankfurt/src/test/resources/config/frankfurt-http-client.properties | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/controlloop/common/controller-frankfurt/src/test/resources/config/frankfurt-http-client.properties b/controlloop/common/controller-frankfurt/src/test/resources/config/frankfurt-http-client.properties index afc8772f9..1e3e88cec 100644 --- a/controlloop/common/controller-frankfurt/src/test/resources/config/frankfurt-http-client.properties +++ b/controlloop/common/controller-frankfurt/src/test/resources/config/frankfurt-http-client.properties @@ -23,7 +23,7 @@ http.client.services=GUARD,AAI,SDNC,SO,VFC http.client.services.GUARD.managed=true http.client.services.GUARD.host=localhost http.client.services.GUARD.port=6669 -http.client.services.GUARD.username=pdpx +http.client.services.GUARD.userName=pdpx http.client.services.GUARD.password=pdpx http.client.services.GUARD.contextUriPath=policy/pdpx/v1/ @@ -35,7 +35,7 @@ http.client.services.AAI.contextUriPath= http.client.services.SDNC.managed=true http.client.services.SDNC.host=localhost http.client.services.SDNC.port=6665 -http.client.services.SDNC.username=sdnc +http.client.services.SDNC.userName=sdnc http.client.services.SDNC.password=sdnc http.client.services.SDNC.contextUriPath= @@ -47,6 +47,6 @@ http.client.services.SO.contextUriPath= http.client.services.VFC.managed=true http.client.services.VFC.host=localhost http.client.services.VFC.port=6668 -http.client.services.VFC.username=VFC +http.client.services.VFC.userName=VFC http.client.services.VFC.password=VFC http.client.services.VFC.contextUriPath=api/nslcm/v1 |