This is an automated email from the ASF dual-hosted git repository. liaoxin 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 1332a896b12 [improve](move-memtable) disable stack trace in load stream reply (#46318) 1332a896b12 is described below commit 1332a896b12b38f9b6bac5141eea21205143f5b2 Author: Kaijie Chen <chenkai...@selectdb.com> AuthorDate: Fri Jan 3 09:40:49 2025 +0800 [improve](move-memtable) disable stack trace in load stream reply (#46318) LoadStreamStub is logging too much on errors. This PR simplifies the logs by disabling the stack trace, without changing functionality. --- be/src/vec/sink/load_stream_stub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/sink/load_stream_stub.cpp b/be/src/vec/sink/load_stream_stub.cpp index d5b04c636d4..0126f84f6c3 100644 --- a/be/src/vec/sink/load_stream_stub.cpp +++ b/be/src/vec/sink/load_stream_stub.cpp @@ -48,7 +48,7 @@ int LoadStreamReplyHandler::on_received_messages(brpc::StreamId id, butil::IOBuf stub->_is_eos.store(true); } - Status st = Status::create(response.status()); + Status st = Status::create<false>(response.status()); std::stringstream ss; ss << "on_received_messages, " << *this << ", stream_id=" << id; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org