This is an automated email from the ASF dual-hosted git repository. hutran pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-gobblin.git
The following commit(s) were added to refs/heads/master by this push: new dec3b91 [GOBBLIN-1065] Fix SSL verification issue for macOS dec3b91 is described below commit dec3b91abb6ab3dc7223eaa3b19124cfe3c1d922 Author: autumnust <le...@linkedin.com> AuthorDate: Wed Mar 4 10:01:27 2020 -0800 [GOBBLIN-1065] Fix SSL verification issue for macOS Closes #2903 from autumnust/master --- dev/gobblin-pr | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev/gobblin-pr b/dev/gobblin-pr index 8b34ad9..39a62b5 100755 --- a/dev/gobblin-pr +++ b/dev/gobblin-pr @@ -41,6 +41,10 @@ import textwrap # import ssl # print(ssl.OPENSSL_VERSION) +# Enabling following lines if you found SSL: CERTIFICATE_VERIFY_FAILED with Python3 +#import ssl +#ssl._create_default_https_context = ssl._create_unverified_context + # Python 3 compatibility try: import urllib2 as urllib