Skip to content

Commit

Permalink
Setting https request to IdentityIQ (IIQ) to grant data access to ver…
Browse files Browse the repository at this point in the history
…ify the host/cert. IIQ uses a self signed cert that is in the host cert file but python keeps its own so now will have to set the environment variable REQUESTS_CA_BUNDLE=<host ca file>
  • Loading branch information
Daniel van Balen committed Sep 10, 2020
1 parent 532739f commit a8e9385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/cfpb_extrafields/controllers/access.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def submit(self, resource_id, cn):
workflow_url,
json=workflow_json,
auth=HTTPBasicAuth(workflow_user, workflow_pass),
verify=False
verify=True
)
flash_notice("Access request has been sent, you will recieve email updates on the status of the request as it is processed.")
except Exception as e:
Expand Down

0 comments on commit a8e9385

Please sign in to comment.