From 5e397a59e6d45358674041464c121085e1652324 Mon Sep 17 00:00:00 2001 From: John Siirola Date: Fri, 11 Jan 2019 14:43:09 -0700 Subject: [PATCH 1/3] Include the cacert in the PUT call when uploading to S3 --- codecov/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/codecov/__init__.py b/codecov/__init__.py index 82e12136..da90b8cd 100644 --- a/codecov/__init__.py +++ b/codecov/__init__.py @@ -737,6 +737,7 @@ def main(*argv, **kwargs): write(' Uploading to S3...') s3 = requests.put(upload_url, data=reports, + verify=codecov.cacert, headers={'Content-Type': 'text/plain', 'x-amz-acl': 'public-read'}) s3.raise_for_status() From deb5667fbd1cf0b0cd9a319bbbc413fcba3ac19c Mon Sep 17 00:00:00 2001 From: John Siirola Date: Mon, 18 May 2020 16:34:50 -0600 Subject: [PATCH 2/3] Revert "Include the cacert in the PUT call when uploading to S3" This reverts commit 5e397a59e6d45358674041464c121085e1652324. --- codecov/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/codecov/__init__.py b/codecov/__init__.py index da90b8cd..82e12136 100644 --- a/codecov/__init__.py +++ b/codecov/__init__.py @@ -737,7 +737,6 @@ def main(*argv, **kwargs): write(' Uploading to S3...') s3 = requests.put(upload_url, data=reports, - verify=codecov.cacert, headers={'Content-Type': 'text/plain', 'x-amz-acl': 'public-read'}) s3.raise_for_status() From 0249e7dcec2125fe74094ea3a4e7a54411e52cbe Mon Sep 17 00:00:00 2001 From: John Siirola Date: Mon, 18 May 2020 16:36:14 -0600 Subject: [PATCH 3/3] Include the cacert in the PUT call when uploading to S3 --- codecov/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/codecov/__init__.py b/codecov/__init__.py index 2a2a3f69..7f07ac71 100644 --- a/codecov/__init__.py +++ b/codecov/__init__.py @@ -1042,6 +1042,7 @@ def main(*argv, **kwargs): s3 = requests.put( upload_url, data=reports, + verify=codecov.cacert, headers={"Content-Type": "text/plain",}, ) s3.raise_for_status()