Skip to content

Commit

Permalink
[ISSUE #11926] The abnormal exit mechanism does not take effect (#12045)
Browse files Browse the repository at this point in the history
  • Loading branch information
syshenyao authored May 6, 2024
1 parent 70ad2eb commit 8d6f87e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public static boolean dumpWithMd5(String dataId, String group, String tenant, St
DUMP_LOG.error("[dump-exception] save disk error. " + groupKey + ", " + ioe);
if (ioe.getMessage() != null) {
String errMsg = ioe.getMessage();
if (NO_SPACE_CN.equals(errMsg) || NO_SPACE_EN.equals(errMsg) || errMsg.contains(DISK_QUOTA_CN)
if (errMsg.contains(NO_SPACE_CN) || errMsg.contains(NO_SPACE_EN) || errMsg.contains(DISK_QUOTA_CN)
|| errMsg.contains(DISK_QUOTA_EN)) {
// Protect from disk full.
FATAL_LOG.error("Local Disk Full,Exit", ioe);
Expand Down

0 comments on commit 8d6f87e

Please sign in to comment.