Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
EOEPCA-383 updated pep release branch
Browse files Browse the repository at this point in the history
AlvaroVillanueva committed Jun 2, 2021
1 parent 79999db commit 8980732
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/pep-engine/values.yaml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ global:
limitUses: 1
pdpUrl: http://demoexample.gluu.org
pdpPort: 5567
pdpPolicy: /policy/
pdpPolicy: /pdp/policy/
verifySignature: "'false'"
nginxIp: 10.0.2.15
proxyServicePort: 5566
2 changes: 1 addition & 1 deletion src/config/config.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"realm": "eoepca", "auth_server_url": "https://test.eoepca.org", "service_host": "0.0.0.0", "proxy_service_port": 5566, "resources_service_port": 5576, "s_margin_rpt_valid": 5, "check_ssl_certs": false, "use_threads": true, "debug_mode": true, "resource_server_endpoint": "http://eoepca-ades-core", "api_rpt_uma_validation": true, "rpt_limit_uses": 5, "pdp_url": "http://test.eoepca.org", "pdp_port": 5567, "pdp_policy_endpoint": "/policy/", "verify_signature": false}
{"realm": "eoepca", "auth_server_url": "https://test.eoepca.org", "service_host": "0.0.0.0", "proxy_service_port": 5566, "resources_service_port": 5576, "s_margin_rpt_valid": 5, "check_ssl_certs": false, "use_threads": true, "debug_mode": true, "resource_server_endpoint": "http://eoepca-ades-core", "api_rpt_uma_validation": true, "rpt_limit_uses": 5, "pdp_url": "http://test.eoepca.org", "pdp_port": 5567, "pdp_policy_endpoint": "/pdp/policy/", "verify_signature": false}
2 changes: 1 addition & 1 deletion src/handlers/policy_handler.py
Original file line number Diff line number Diff line change
@@ -28,4 +28,4 @@ def create_policy(self, policy_body, input_headers):
self.logger.debug("PDP Headers:")
self.logger.debug(headers)
json = policy_body
return post("http://"+self.url +":" + self.port + self.endpoint, headers=headers, json=json)
return post(self.url + self.endpoint, headers=headers, json=json)

0 comments on commit 8980732

Please sign in to comment.