diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-05-27 12:34:22 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-05-27 12:34:26 -0400 |
commit | c9609d820b6fd4082eecf7904178c361a22de6e9 (patch) | |
tree | f22728d168b0785b5ee0b80ec3d3f238aef41a31 /vendor/github.com/klauspost/compress/flate/deflate.go | |
parent | cd1f99d063cf8bb4efdb22d2f56f1aef73ff4ba0 (diff) | |
download | podman-c9609d820b6fd4082eecf7904178c361a22de6e9.tar.gz podman-c9609d820b6fd4082eecf7904178c361a22de6e9.tar.bz2 podman-c9609d820b6fd4082eecf7904178c361a22de6e9.zip |
Vendor in containers/storage v1.32.1
Theoretically this should fix the aweful flake we have
been suffering with.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'vendor/github.com/klauspost/compress/flate/deflate.go')
-rw-r--r-- | vendor/github.com/klauspost/compress/flate/deflate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/klauspost/compress/flate/deflate.go b/vendor/github.com/klauspost/compress/flate/deflate.go index 40b5802de..5283ac5a5 100644 --- a/vendor/github.com/klauspost/compress/flate/deflate.go +++ b/vendor/github.com/klauspost/compress/flate/deflate.go @@ -644,7 +644,7 @@ func (d *compressor) init(w io.Writer, level int) (err error) { d.fill = (*compressor).fillBlock d.step = (*compressor).store case level == ConstantCompression: - d.w.logNewTablePenalty = 8 + d.w.logNewTablePenalty = 10 d.window = make([]byte, 32<<10) d.fill = (*compressor).fillBlock d.step = (*compressor).storeHuff |