This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new eab8d9f454f [fix](backup) Fix read compressed backup job from old
version (#45343)
eab8d9f454f is described below
commit eab8d9f454f8da8668f75b7f5e790bea6c6d85b2
Author: walter <[email protected]>
AuthorDate: Thu Dec 12 17:22:40 2024 +0800
[fix](backup) Fix read compressed backup job from old version (#45343)
---
fe/fe-core/src/main/java/org/apache/doris/backup/BackupJob.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/backup/BackupJob.java
b/fe/fe-core/src/main/java/org/apache/doris/backup/BackupJob.java
index 1c897368624..de12670807f 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/backup/BackupJob.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/backup/BackupJob.java
@@ -1126,7 +1126,7 @@ public class BackupJob extends AbstractJob implements
GsonPostProcessable {
ByteArrayInputStream byteStream = new
ByteArrayInputStream(text.getBytes());
try (GZIPInputStream gzipStream = new GZIPInputStream(byteStream))
{
try (DataInputStream stream = new DataInputStream(gzipStream))
{
- readOthers(in);
+ readOthers(stream);
}
}
} else {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]