Skip to content

Commit

Permalink
[fix](log) remove redundent log printing
Browse files Browse the repository at this point in the history
  • Loading branch information
jacktengg committed Nov 1, 2023
1 parent 4eb9a52 commit f2940d4
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 f2940d4

Please sign in to comment.