Skip to content

Commit

Permalink
make up for some missing revise
Browse files Browse the repository at this point in the history
  • Loading branch information
Lloyd-Pottiger committed Mar 24, 2022
1 parent b5578b6 commit cccfb60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbms/src/Flash/Mpp/ExchangeReceiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ void ExchangeReceiverBase<RPCContext>::readLoop(const Request & req)
meet_error = true;
auto local_state = getState();
local_err_msg = "receiver's state is " + getReceiverStateStr(local_state) + ", exit from readLoop";
LOG_FMT_WARNING(log, local_err_msg);
LOG_WARNING(log, local_err_msg);
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion dbms/src/Flash/Mpp/MPPTunnel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ void MPPTunnelBase<Writer>::sendJob(bool need_lock)
err_msg = "fatal error in sendJob()";
}
if (!err_msg.empty())
LOG_FMT_ERROR(log, err_msg);
LOG_ERROR(log, err_msg);
consumerFinish(err_msg, need_lock);
if (is_async)
writer->writeDone(grpc::Status::OK);
Expand Down

0 comments on commit cccfb60

Please sign in to comment.