This is an automated email from the ASF dual-hosted git repository. morningman 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 b1816d49e7 [fix](typo) check catalog enable exception message spelling mistake (#13925) b1816d49e7 is described below commit b1816d49e71d5383abb49704973802d3935fe504 Author: gnehil <adamlee...@gmail.com> AuthorDate: Thu Nov 3 14:44:37 2022 +0800 [fix](typo) check catalog enable exception message spelling mistake (#13925) --- fe/fe-core/src/main/java/org/apache/doris/common/util/Util.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/common/util/Util.java b/fe/fe-core/src/main/java/org/apache/doris/common/util/Util.java index deb79a1bd9..e2703b37b4 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/common/util/Util.java +++ b/fe/fe-core/src/main/java/org/apache/doris/common/util/Util.java @@ -477,7 +477,7 @@ public class Util { public static void checkCatalogEnabled() throws AnalysisException { if (!Config.enable_multi_catalog) { throw new AnalysisException("The multi-catalog feature is still in experiment, and you can enable it " - + "manually by set fe configuration named `enable_multi_catalog` to be ture."); + + "manually by set fe configuration named `enable_multi_catalog` to be true."); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org