Skip to content

Commit

Permalink
Fix format issue
Browse files Browse the repository at this point in the history
Signed-off-by: yibin <huyibin@pingcap.com>
  • Loading branch information
yibin87 committed Apr 21, 2022
1 parent 567f395 commit 9daae88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dbms/src/Debug/dbgFuncCoprocessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -380,10 +380,10 @@ void dbgFuncTiDBQueryFromNaturalDag(Context & context, const ASTs & args, DBGInv
output("Invalid");
FmtBuffer fmt_buf;
fmt_buf.joinStr(
failed_req_msg_vec.begin(),
failed_req_msg_vec.end(),
[](const auto & pair, FmtBuffer & fb) { fb.fmtAppend("request {} failed, msg: {}", pair.first, pair.second); },
"\n");
failed_req_msg_vec.begin(),
failed_req_msg_vec.end(),
[](const auto & pair, FmtBuffer & fb) { fb.fmtAppend("request {} failed, msg: {}", pair.first, pair.second); },
"\n");
throw Exception(fmt_buf.toString(), ErrorCodes::LOGICAL_ERROR);
}
}
Expand Down

0 comments on commit 9daae88

Please sign in to comment.