From 612d9dd7c6353a93275f54648c8a0bfe01cb9b63 Mon Sep 17 00:00:00 2001 From: zy-kkk Date: Thu, 16 Nov 2023 10:16:35 +0800 Subject: [PATCH] [fix](errmsg) fix multiple FE processes start err msg (#27009) --- fe/fe-core/src/main/java/org/apache/doris/DorisFE.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/DorisFE.java b/fe/fe-core/src/main/java/org/apache/doris/DorisFE.java index c10d630e09..fba2e486fb 100755 --- a/fe/fe-core/src/main/java/org/apache/doris/DorisFE.java +++ b/fe/fe-core/src/main/java/org/apache/doris/DorisFE.java @@ -458,7 +458,7 @@ public class DorisFE { releaseFileLockAndCloseFileChannel(); throw new RuntimeException("Try to lock process failed", e); } - throw new RuntimeException("FE process has been started,please do not start multiple FE processes at the" + throw new RuntimeException("FE process has been started,please do not start multiple FE processes at the " + "same time"); }