[CI] clang-tidy auto fixes (#1385)

Fixes #1384. Please review and commit clang-tidy fixes.

Co-authored-by: kuznetsss <kuznetsss@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-04-30 12:39:35 +01:00
committed by GitHub
parent b8cb60b7db
commit 8f47128424
28 changed files with 153 additions and 279 deletions

View File

@@ -99,15 +99,14 @@ public:
bool cacheOnly = false
)
{
LOG(log_.trace()) << "Processing response. "
<< "Marker prefix = " << getMarkerPrefix();
LOG(log_.trace()) << "Processing response. " << "Marker prefix = " << getMarkerPrefix();
if (abort) {
LOG(log_.error()) << "AsyncCallData aborted";
return CallStatus::ERRORED;
}
if (!status_.ok()) {
LOG(log_.error()) << "AsyncCallData status_ not ok: "
<< " code = " << status_.error_code() << " message = " << status_.error_message();
LOG(log_.error()) << "AsyncCallData status_ not ok: " << " code = " << status_.error_code()
<< " message = " << status_.error_message();
return CallStatus::ERRORED;
}
if (!next_->is_unlimited()) {