Skip to content

Commit

Permalink
[fix](log) avoid redundent log printing (apache#26188)
Browse files Browse the repository at this point in the history
Co-authored-by: yiguolei <[email protected]>
  • Loading branch information
jacktengg and yiguolei authored Nov 1, 2023
1 parent 8f15f9a commit 7ba4f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/service/internal_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 7ba4f91

Please sign in to comment.