URL: https://github.com/freeipa/freeipa/pull/506 Author: tscherf Title: #506: added ssl verification Action: opened
PR body: """ """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/506/head:pr506 git checkout pr506
From 05b8e70807e182047177472fbdd44bba9445ff1a Mon Sep 17 00:00:00 2001 From: Thorsten Scherf <tsch...@redhat.com> Date: Fri, 24 Feb 2017 10:59:09 +0100 Subject: [PATCH] added ssl verification --- ipaserver/secrets/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipaserver/secrets/client.py b/ipaserver/secrets/client.py index a945e01..3c7a055 100644 --- a/ipaserver/secrets/client.py +++ b/ipaserver/secrets/client.py @@ -96,6 +96,7 @@ def fetch_key(self, keyname, store=True): # Perform request r = requests.get(url, headers=headers, + verify=paths.IPA_CA_CRT, params={'type': 'kem', 'value': request}) r.raise_for_status() reply = r.json()
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code