Skip to content

Commit

Permalink
Seeing failures locally, revert to default gzip
Browse files Browse the repository at this point in the history
  • Loading branch information
otoolep committed Feb 16, 2024
1 parent aad5bb2 commit 40e3098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/gzip/compressor.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Compressor struct {
// compresses the data using gzip.
func NewCompressor(r io.Reader, bufSz int) (*Compressor, error) {
buf := new(bytes.Buffer)
gzw, err := gzip.NewWriterLevel(buf, gzip.BestSpeed)
gzw, err := gzip.NewWriterLevel(buf, gzip.DefaultCompression)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 40e3098

Please sign in to comment.