Skip to content

Commit

Permalink
branch-3.0: [fix](backup) Fix read compressed backup job from old ver…
Browse files Browse the repository at this point in the history
…sion #45343 (#45356)

Cherry-picked from #45343

Co-authored-by: walter <[email protected]>
  • Loading branch information
github-actions[bot] and w41ter authored Dec 12, 2024
1 parent d95b948 commit a1d9142
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,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 a1d9142

Please sign in to comment.