Skip to content

Commit

Permalink
[fix](backup) Fix compressed backup job (#43197)
Browse files Browse the repository at this point in the history
This was introduced in #42462
  • Loading branch information
w41ter authored Nov 4, 2024
1 parent d78dbf3 commit d1867fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ public void write(DataOutput out) throws IOException {
ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
try (GZIPOutputStream gzipStream = new GZIPOutputStream(byteStream)) {
try (DataOutputStream stream = new DataOutputStream(gzipStream)) {
writeOthers(out);
writeOthers(stream);
written = stream.size();
}
}
Expand Down

0 comments on commit d1867fe

Please sign in to comment.