This is an automated email from the ASF dual-hosted git repository. dataroaring 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 838aa20f1e7 [improvement](cooldown) print the cooldown version when follow cooldown version (#30239) 838aa20f1e7 is described below commit 838aa20f1e74125cdbd8f40a4ca45865cf761c03 Author: AlexYue <yj976240...@gmail.com> AuthorDate: Tue Jan 23 20:52:50 2024 +0800 [improvement](cooldown) print the cooldown version when follow cooldown version (#30239) --- be/src/olap/tablet.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/be/src/olap/tablet.cpp b/be/src/olap/tablet.cpp index 96f00ccd380..d3d32b2ab02 100644 --- a/be/src/olap/tablet.cpp +++ b/be/src/olap/tablet.cpp @@ -2195,12 +2195,14 @@ Status Tablet::_follow_cooldowned_data() { } } else if (!rs->is_local()) { return Status::InternalError<false>( - "cooldowned version larger than that to follow"); + "cooldowned version larger than that to follow with cooldown version {}", + cooldowned_version); } } if (!version_aligned) { - return Status::InternalError<false>("cooldowned version is not aligned"); + return Status::InternalError<false>("cooldowned version is not aligned with version {}", + cooldowned_version); } std::sort(overlap_rowsets.begin(), overlap_rowsets.end(), Rowset::comparator); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org