Skip to content

Commit

Permalink
refine
Browse files Browse the repository at this point in the history
Signed-off-by: xufei <xufeixw@mail.ustc.edu.cn>
  • Loading branch information
windtalker committed Sep 8, 2022
1 parent be955b5 commit 3cac4ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbms/src/Flash/Mpp/ExchangeReceiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ String getReceiverStateStr(const ExchangeReceiverState & s)
String constructStatusString(ExchangeReceiverState state, const String & error_message)
{
if (error_message.empty())
return fmt::format("Receiver status is {}", getReceiverStateStr(state));
return fmt::format("Receiver status is {}, with error message: {}", getReceiverStateStr(state), error_message);
return fmt::format("Receiver state: {}", getReceiverStateStr(state));
return fmt::format("Receiver state: {}, error message: {}", getReceiverStateStr(state), error_message);
}

// If enable_fine_grained_shuffle:
Expand Down

0 comments on commit 3cac4ab

Please sign in to comment.