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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 680344ea568 [fix](log) avoid redundent log printing (#26188) (#26344)
680344ea568 is described below

commit 680344ea568b2949823a042d8afc5ab98d032542
Author: TengJianPing <18241664+jackte...@users.noreply.github.com>
AuthorDate: Fri Nov 3 12:26:58 2023 +0800

    [fix](log) avoid redundent log printing (#26188) (#26344)
---
 be/src/service/internal_service.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/service/internal_service.cpp 
b/be/src/service/internal_service.cpp
index dbaee2cfebe..4ac98dbf25f 100644
--- a/be/src/service/internal_service.cpp
+++ b/be/src/service/internal_service.cpp
@@ -1057,7 +1057,7 @@ void 
PInternalServiceImpl::_transmit_block(google::protobuf::RpcController* cont
     st.to_protobuf(response->mutable_status());
     if (extract_st.ok()) {
         st = _exec_env->vstream_mgr()->transmit_block(request, &done);
-        if (!st.ok()) {
+        if (!st.ok() && !st.is<END_OF_FILE>()) {
             LOG(WARNING) << "transmit_block failed, message=" << st
                          << ", fragment_instance_id=" << 
print_id(request->finst_id())
                          << ", node=" << request->node_id();


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to