This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 7ba4f912587 [fix](log) avoid redundent log printing (#26188)
7ba4f912587 is described below
commit 7ba4f91258721c14381efd64df9eafa377e5e41e
Author: TengJianPing <[email protected]>
AuthorDate: Wed Nov 1 13:49:08 2023 +0800
[fix](log) avoid redundent log printing (#26188)
Co-authored-by: yiguolei <[email protected]>
---
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 8f9ed8c0d09..f80f4ddb5e0 100644
--- a/be/src/service/internal_service.cpp
+++ b/be/src/service/internal_service.cpp
@@ -1177,7 +1177,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: [email protected]
For additional commands, e-mail: [email protected]