Skip to content

Commit 4954228

Browse files
Replace shotgunshoftware references
1 parent 091821f commit 4954228

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ v3.0.25 (2016 Jan 12)
182182
=====================
183183

184184
- Add handling for Python versions incompatible with SHA-2 (see `this blog post
185-
<http://blog.shotgunsoftware.com/2016/01/important-ssl-certificate-renewal-and.html>`_).
185+
<https://www.shotgridsoftware.com/blog/important-ssl-certificate-renewal-and-sha-2/>`_).
186186
- Add ``SHOTGUN_FORCE_CERTIFICATE_VALIDATION`` environment variable to prevent disabling certficate
187187
validation when SHA-2 validation is not available.
188188
- Add SSL info to user-agent header.

shotgun_api3/shotgun.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3558,7 +3558,7 @@ def _make_call(self, verb, path, body, headers):
35583558
# get raised as well.
35593559
#
35603560
# For more info see:
3561-
# http://blog.shotgunsoftware.com/2016/01/important-ssl-certificate-renewal-and.html
3561+
# https://www.shotgridsoftware.com/blog/important-ssl-certificate-renewal-and-sha-2/
35623562
#
35633563
# SHA-2 errors look like this:
35643564
# [Errno 1] _ssl.c:480: error:0D0C50A1:asn1 encoding routines:ASN1_item_verify:
@@ -3572,8 +3572,8 @@ def _make_call(self, verb, path, body, headers):
35723572
if self.config.no_ssl_validation is False:
35733573
LOG.warning("SSL Error: this Python installation is incompatible with "
35743574
"certificates signed with SHA-2. Disabling certificate validation. "
3575-
"For more information, see http://blog.shotgunsoftware.com/2016/01/"
3576-
"important-ssl-certificate-renewal-and.html")
3575+
"For more information, see https://www.shotgridsoftware.com/blog/"
3576+
"important-ssl-certificate-renewal-and-sha-2/")
35773577
self._turn_off_ssl_validation()
35783578
# reload user agent to reflect that we have turned off ssl validation
35793579
req_headers["user-agent"] = "; ".join(self._user_agents)

0 commit comments

Comments
 (0)