This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 26553fc899b [fix](partition) add log when tablet partition id eq 0
(#31796)
26553fc899b is described below
commit 26553fc899beb4e70913186d77cbd710825d482a
Author: deardeng <[email protected]>
AuthorDate: Wed Mar 6 13:49:54 2024 +0800
[fix](partition) add log when tablet partition id eq 0 (#31796)
---
be/src/olap/data_dir.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/be/src/olap/data_dir.cpp b/be/src/olap/data_dir.cpp
index 443cf1b12a3..55759a72128 100644
--- a/be/src/olap/data_dir.cpp
+++ b/be/src/olap/data_dir.cpp
@@ -492,8 +492,8 @@ Status DataDir::load() {
}
if (rowset_partition_id_eq_0_num >
config::ignore_invalid_partition_id_rowset_num) {
LOG(FATAL) << fmt::format(
- "roswet partition id eq 0 bigger than config {}, be exit, plz
check be.INFO",
- config::ignore_invalid_partition_id_rowset_num);
+ "roswet partition id eq 0 is {} bigger than config {}, be
exit, plz check be.INFO",
+ rowset_partition_id_eq_0_num,
config::ignore_invalid_partition_id_rowset_num);
exit(-1);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]