Skip to content

Commit

Permalink
[fix](dump) do not report success if dumping fails
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Jul 9, 2024
1 parent f96de8e commit bd81a7f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
Original file line number Diff line number Diff line change
Expand Up @@ -5038,6 +5038,7 @@ public String dumpImage() {
saveImage(dumpFile, journalId);
} catch (IOException e) {
LOG.error("failed to dump image to {}", dumpFilePath, e);
return null;
}
} finally {
// unlock all
Expand Down

0 comments on commit bd81a7f

Please sign in to comment.