You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When having multiple instances of WarcWriter the operations on private static final ByteBuffer GZIP_HEADER = ByteBuffer.wrap(GZIP_HEADER_); are causing issues.
Some threads are writing the gzip header, some might not.
I think the issue could be fixed by removing the static part for the GZIP_HEADER.
The text was updated successfully, but these errors were encountered:
When having multiple instances of WarcWriter the operations on
private static final ByteBuffer GZIP_HEADER = ByteBuffer.wrap(GZIP_HEADER_);
are causing issues.Some threads are writing the gzip header, some might not.
I think the issue could be fixed by removing the
static
part for the GZIP_HEADER.The text was updated successfully, but these errors were encountered: