URL: https://github.com/freeipa/freeipa/pull/4958 Author: flo-renaud Title: #4958: [Backport][ipa-4-8] Replace SSLCertVerificationError with SSLCertificateError for py36 Action: opened
PR body: """ This PR was opened automatically because PR #4956 was pushed to master and backport to ipa-4-8 is required. """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/4958/head:pr4958 git checkout pr4958
From df0dff946784f713550c42dc61e13aa905fb0933 Mon Sep 17 00:00:00 2001 From: Rob Crittenden <rcrit...@redhat.com> Date: Wed, 29 Jul 2020 13:42:43 -0400 Subject: [PATCH] Replace SSLCertVerificationError with CertificateError for py36 This exception was added in python 3.7. Use CertificateError instead which is an alias and will work with older python releases. https://bugzilla.redhat.com/show_bug.cgi?id=1858318 --- ipaserver/install/server/upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipaserver/install/server/upgrade.py b/ipaserver/install/server/upgrade.py index 2c36bc0e2b..2c15178655 100644 --- a/ipaserver/install/server/upgrade.py +++ b/ipaserver/install/server/upgrade.py @@ -667,7 +667,7 @@ def http_certificate_ensure_ipa_ca_dnsname(http): try: cert.match_hostname(expect) - except ssl.SSLCertVerificationError: + except ssl.CertificateError: if certs.is_ipa_issued_cert(api, cert): request_id = certmonger.get_request_id( {'cert-file': paths.HTTPD_CERT_FILE})
_______________________________________________ FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/freeipa-devel@lists.fedorahosted.org