diff options
author | saul.gill <saul.gill@est.tech> | 2021-11-10 12:57:03 +0000 |
---|---|---|
committer | Liam Fallon <liam.fallon@est.tech> | 2021-11-12 00:43:36 +0000 |
commit | 906fa908e633f894fcece9493cfce2a9dda71378 (patch) | |
tree | 046539f675362f7b2a7068d0c36ed00837496044 | |
parent | 18366f85ca6450f56cd82e8f2da4a0ed2713061f (diff) |
Fixed https issue in policy-participant9.0.0-ONAP
Changes config files to use "useHttps" instead of "https"
Issue-ID: POLICY-3817
Change-Id: Ic945150eff5334cbba77b4da77d72dc1283d4e67
Signed-off-by: saul.gill <saul.gill@est.tech>
(cherry picked from commit 496f58cf8f5ad6c65b417d2ae79a69ece480d049)
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/policy-clamp-tarball/src/main/resources/etc/PolicyParticipantParameters.yaml b/packages/policy-clamp-tarball/src/main/resources/etc/PolicyParticipantParameters.yaml index bd9a6260a..625b15b89 100644 --- a/packages/policy-clamp-tarball/src/main/resources/etc/PolicyParticipantParameters.yaml +++ b/packages/policy-clamp-tarball/src/main/resources/etc/PolicyParticipantParameters.yaml @@ -8,7 +8,7 @@ participant: port: 6969 userName: healthcheck password: zb!XztG34 - https: true + useHttps: true allowSelfSignedCerts: true policyPapParameters: clientName: pap @@ -16,7 +16,7 @@ participant: port: 6969 userName: healthcheck password: zb!XztG34 - https: true + useHttps: true allowSelfSignedCerts: true intermediaryParameters: reportingTimeIntervalMs: 120000 diff --git a/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml b/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml index e5b2b2ab1..62f8920a4 100644 --- a/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml +++ b/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml @@ -10,7 +10,7 @@ participant: port: 6969 userName: healthcheck password: zb!XztG34 - https: true + useHttps: true allowSelfSignedCerts: true policyPapParameters: clientName: pap @@ -18,7 +18,7 @@ participant: port: 6969 userName: healthcheck password: zb!XztG34 - https: true + useHttps: true allowSelfSignedCerts: true intermediaryParameters: reportingTimeIntervalMs: 120000 |