Closed csw closed 1 year ago
Merging #79 (fb90c9b) into master (f6a8a9a) will increase coverage by
0.03%
. The diff coverage is100.00%
.
:mega: This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more
@@ Coverage Diff @@
## master #79 +/- ##
==========================================
+ Coverage 66.67% 66.71% +0.03%
==========================================
Files 28 28
Lines 2587 2590 +3
==========================================
+ Hits 1725 1728 +3
Misses 610 610
Partials 252 252
Impacted Files | Coverage Δ | |
---|---|---|
cors.go | 75.00% <ø> (ø) |
|
gofakes3.go | 64.03% <100.00%> (+0.18%) |
:arrow_up: |
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.
Kudos, SonarCloud Quality Gate passed!
0 Bugs
0 Vulnerabilities
0 Security Hotspots
1 Code Smell
No Coverage information
0.0% Duplication
Thanks @csw great PR!
gofakes3 was not preserving the Content-Encoding header, meaning that clients would get raw gzipped data in GetObject responses instead of the expected decompressed data when it was stored with
Content-Encoding: gzip
. With this change, it matches the behavior of S3 itself.