Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Sep 12, 2024
1 parent ae8d0cc commit 63e6528
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions be/src/agent/heartbeat_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,10 @@ Status HeartbeatServer::_heartbeat(const TMasterInfo& master_info) {

if (config::cluster_id != master_info.cluster_id && master_info.cluster_id != -1) {
LOG(WARNING) << "fe and be run in different cluster, fe in cluster_id: "
<< master_info.cluster_id << " while be in cluster_id: "
<< config::cluster_id;
<< master_info.cluster_id << " while be in cluster_id: " << config::cluster_id;
return Status::InvalidArgument<false>(
"cluster_id in be and fe are different, fe: {}, be : {}",
master_info.cluster_id, config::cluster_id);
"cluster_id in be and fe are different, fe: {}, be : {}", master_info.cluster_id,
config::cluster_id);
}


Expand Down

0 comments on commit 63e6528

Please sign in to comment.