We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
echo foo > foo; echo bar > bar; gzip -c foo bar > foobar.gz
import cats.effect.IO import cats.effect.unsafe.implicits.global import fs2.compression.Compression import java.io.FileInputStream fs2.io .readInputStream( IO(new FileInputStream("foobar.gz")), 1024, ) .through(Compression[IO].gunzip(1024)) .flatMap(_.content) .compile .drain .unsafeRunSync()
This code snippet throws a java.util.zip.ZipException: Content failed CRC validation.
java.util.zip.ZipException: Content failed CRC validation
I expect it to run without error.
Tested on fs2 3.11.0
My gzip version is Apple gzip 430.140.2
Apple gzip 430.140.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce:
This code snippet throws a
java.util.zip.ZipException: Content failed CRC validation
.I expect it to run without error.
Tested on fs2 3.11.0
My gzip version is
Apple gzip 430.140.2
The text was updated successfully, but these errors were encountered: