Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijchen committed Aug 30, 2024
1 parent 1bf73d2 commit c8f9c1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/runtime/runtime_filter_mgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ Status RuntimeFilterMergeControllerEntity::send_filter_size(const PSendFilterSiz
ExecEnv::GetInstance()->brpc_internal_client_cache()->get_client(addr));
if (stub == nullptr) {
LOG(WARNING) << "Failed to init rpc to " << addr.hostname() << ":" << addr.port();
st = Status::InternalError("Failed to init rpc to {}:{}",
addr.hostname(), addr.port());
st = Status::InternalError("Failed to init rpc to {}:{}", addr.hostname(),
addr.port());
continue;
}

Expand Down

0 comments on commit c8f9c1d

Please sign in to comment.