diff options
author | Michael Mokry <mm117s@att.com> | 2018-08-28 16:39:50 -0500 |
---|---|---|
committer | Michael Mokry <mm117s@att.com> | 2018-08-28 16:39:50 -0500 |
commit | 7c856ba6b8a5d3e4826a2a757a58889f57cae7e4 (patch) | |
tree | 074fdd120ae52e302d655a9745c8cb9fc6bbef6a | |
parent | 181e4d4f95d7fab6b1e134406a22b568a9881bf3 (diff) |
Fixed feature-healthcheck issue
Modified properties to true for https on PAP and PDP
Found a minor typo in do-start.sh that is benign currently but could
cause an issue in the future so figured I would clean it up now.
Change-Id: I06385d36d69955d49cabeb39b09d75ffeaec2fdc
Issue-ID: POLICY-781
Signed-off-by: Michael Mokry <mm117s@att.com>
-rw-r--r-- | feature-healthcheck/src/main/feature/config/feature-healthcheck.properties | 6 | ||||
-rw-r--r-- | packages/docker/src/main/docker/do-start.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/feature-healthcheck/src/main/feature/config/feature-healthcheck.properties b/feature-healthcheck/src/main/feature/config/feature-healthcheck.properties index 9311680d..40938e4d 100644 --- a/feature-healthcheck/src/main/feature/config/feature-healthcheck.properties +++ b/feature-healthcheck/src/main/feature/config/feature-healthcheck.properties @@ -2,7 +2,7 @@ # ============LICENSE_START======================================================= # feature-healthcheck # ================================================================================ -# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -32,7 +32,7 @@ http.client.services=PAP,PDP http.client.services.PAP.host=${{PAP_HOST}} http.client.services.PAP.port=9091 http.client.services.PAP.contextUriPath=pap/test -http.client.services.PAP.https=false +http.client.services.PAP.https=true http.client.services.PAP.userName=${{PAP_USERNAME}} http.client.services.PAP.password=${{PAP_PASSWORD}} http.client.services.PAP.managed=true @@ -40,7 +40,7 @@ http.client.services.PAP.managed=true http.client.services.PDP.host=${{PDP_HOST}} http.client.services.PDP.port=8081 http.client.services.PDP.contextUriPath=pdp/test -http.client.services.PDP.https=false +http.client.services.PDP.https=true http.client.services.PDP.userName=${{PDP_USERNAME}} http.client.services.PDP.password=${{PDP_PASSWORD}} http.client.services.PDP.managed=false diff --git a/packages/docker/src/main/docker/do-start.sh b/packages/docker/src/main/docker/do-start.sh index 0a550694..9e4659df 100644 --- a/packages/docker/src/main/docker/do-start.sh +++ b/packages/docker/src/main/docker/do-start.sh @@ -63,7 +63,7 @@ else fi if [[ -f config/policy-truststore ]]; then - cp -f config/policy-trustore ${POLICY_HOME}/etc/ssl + cp -f config/policy-truststore ${POLICY_HOME}/etc/ssl fi if [[ -f config/drools-tweaks.sh ]] ; then |