Skip to content

Commit

Permalink
[fix](backup) Fix read compressed backup job from old version
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter committed Dec 12, 2024
1 parent 5706b6b commit e8fa004
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ public void readFields(DataInput in) throws IOException {
ByteArrayInputStream byteStream = new ByteArrayInputStream(text.getBytes());
try (GZIPInputStream gzipStream = new GZIPInputStream(byteStream)) {
try (DataInputStream stream = new DataInputStream(gzipStream)) {
readOthers(in);
readOthers(stream);
}
}
} else {
Expand Down

0 comments on commit e8fa004

Please sign in to comment.