diff options
author | liamfallon <liam.fallon@est.tech> | 2020-07-06 09:31:18 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2020-07-06 15:18:50 +0100 |
commit | 042a8f5ec583a7431971847995f1aabd9bc48366 (patch) | |
tree | 44dc989c4d57ad0fee1a4b119dd262d103c0c6c1 /examples/examples-onap-vcpe | |
parent | 9519d1257b4fe4fbb68d3e9ab155de8ff0f13052 (diff) |
Fix URL checking on REST plugins
The URL parameter must always be provided on the REST client carrier plugin
The URL parameter must always be provided on the REST requestor consumer
The URL parameter is not required on the REST requestor producer
This patch fixes the implementation to always checks the URL for existence on
the REST Client plugin. The current checks on the REST Requestor are correct
for the REST requestor plugin consumer and producer classes, so the checks
are not required in the REST Requestor parameters.
Issue-ID: POLICY-2692
Change-Id: I4e1534202002cf4a03bd159ac97b2a4f5b1746ab
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'examples/examples-onap-vcpe')
-rw-r--r-- | examples/examples-onap-vcpe/src/main/resources/examples/config/ONAPvCPE/ApexConfig.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/examples-onap-vcpe/src/main/resources/examples/config/ONAPvCPE/ApexConfig.json b/examples/examples-onap-vcpe/src/main/resources/examples/config/ONAPvCPE/ApexConfig.json index 5208767b0..01269c6ba 100644 --- a/examples/examples-onap-vcpe/src/main/resources/examples/config/ONAPvCPE/ApexConfig.json +++ b/examples/examples-onap-vcpe/src/main/resources/examples/config/ONAPvCPE/ApexConfig.json @@ -40,7 +40,9 @@ "url": "http://172.18.0.6:8081/pdp/api/getDecision", "httpMethod": "POST", "restRequestTimeout": 2000, - "httpHeader": "Authorization:dGVzdHBkcDphbHBoYTEyMw== ClientAuth:cHl0aG9uOnRlc3Q=" + "httpHeaders": [ + ["Authorization:dGVzdHBkcDphbHBoYTEyMw== ClientAuth:cHl0aG9uOnRlc3Q="] + ] } }, "eventProtocolParameters": { |