Hi Paul,
Thank for the quick reply!
I have tried with your fix and it does not work :(
But I think you are right and problem is that GZIPOutputStream.finish is not called, because I have tried with the following hook and it is working:
@Override
public void flush() throws IOException {
out.flush();
out.finish();
}
So, looks like that problem in that GZIPOutputStream.close() is not called at all
Best Regards,
Sergey