This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 8dbd73988ae [fix](recvr) catch exception of transmit_block (#39882) 8dbd73988ae is described below commit 8dbd73988ae15ea24875bc91c68b2671d67a0c02 Author: TengJianPing <18241664+jackte...@users.noreply.github.com> AuthorDate: Sun Aug 25 00:25:20 2024 +0800 [fix](recvr) catch exception of transmit_block (#39882) BP #39881 --- be/src/vec/runtime/vdata_stream_recvr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/runtime/vdata_stream_recvr.cpp b/be/src/vec/runtime/vdata_stream_recvr.cpp index 912ecf53989..0cf5d03a96a 100644 --- a/be/src/vec/runtime/vdata_stream_recvr.cpp +++ b/be/src/vec/runtime/vdata_stream_recvr.cpp @@ -164,7 +164,7 @@ Status VDataStreamRecvr::SenderQueue::add_block(const PBlock& pblock, int be_num { SCOPED_RAW_TIMER(&deserialize_time); block = Block::create_unique(); - RETURN_IF_ERROR(block->deserialize(pblock)); + RETURN_IF_ERROR_OR_CATCH_EXCEPTION(block->deserialize(pblock)); } const auto rows = block->rows(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org