diff --git a/README.md b/README.md index 03d1cb4..d158e3b 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,10 @@ All types of contributions are welcome! Feel free to open an [issue](https://git - Specifiyng file paths with spaces is currently not possible without a workaround. This is expected to be fixed when a new major release of codecov-exe is released (See issue [#71](https://github.com/codecov/codecov-exe/issues/71) for possible workaround and tracking). + +- If you're seeing an **HTTP 400 error when uploading reports to S3**, make sure you've updated to at least version 1.11.0. + + ## Maintainers diff --git a/Source/Codecov/Upload/CodecovUploader.cs b/Source/Codecov/Upload/CodecovUploader.cs index 83d6e84..6f80add 100644 --- a/Source/Codecov/Upload/CodecovUploader.cs +++ b/Source/Codecov/Upload/CodecovUploader.cs @@ -43,7 +43,8 @@ protected virtual void ConfigureContent(HttpContent content) } protected virtual void ConfigureRequest(HttpRequestMessage request) - => request.Headers.TryAddWithoutValidation("x-amz-acl", "public-read"); + { + } protected virtual HttpResponseMessage CreateResponse(HttpRequestMessage request) {