This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 739bc0f9452b1098b0c3afd9c1b8acfe30cabe71 Author: bobhan1 <bh2444151...@outlook.com> AuthorDate: Thu Aug 31 13:54:23 2023 +0800 [Fix](status) fix printing too many logs in VNodeChannel::try_send_and_fetch_status #23693 after #23425, Status::InternalError(...) will print stacktrace and warning logs, so we can't use it in VNodeChannel::try_send_and_fetch_status --- be/src/vec/sink/vtablet_sink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/sink/vtablet_sink.cpp b/be/src/vec/sink/vtablet_sink.cpp index 6e8ceb508b..7d29668568 100644 --- a/be/src/vec/sink/vtablet_sink.cpp +++ b/be/src/vec/sink/vtablet_sink.cpp @@ -652,7 +652,7 @@ Status VNodeChannel::none_of(std::initializer_list<bool> vars) { if (!vars_str.empty()) { vars_str.pop_back(); // 0/1/0/ -> 0/1/0 } - st = Status::InternalError(vars_str); + st = Status::Uninitialized(vars_str); } return st; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org