Skip to content

Commit

Permalink
[ISSUE alibaba#11926] The abnormal exit mechanism does not take effect
Browse files Browse the repository at this point in the history
  • Loading branch information
syshenyao authored and [email protected] committed Apr 22, 2024
1 parent 96814ff commit 98227bb
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 98227bb

Please sign in to comment.