Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Sonnenberg <[email protected]>
  • Loading branch information
briansonnenberg committed Nov 19, 2024
1 parent f62fd27 commit e614e56
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/common/upstream/load_stats_reporter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ LoadStatsReporter::LoadStatsReporter(const LocalInfo::LocalInfo& local_info,
time_source_(dispatcher.timeSource()) {
request_.mutable_node()->MergeFrom(local_info.node());
request_.mutable_node()->add_client_features("envoy.lrs.supports_send_all_clusters");
retry_timer_ = dispatcher.createTimer([this]() -> void { stats_.retries_.inc(); establishNewStream(); });
retry_timer_ = dispatcher.createTimer([this]() -> void {
stats_.retries_.inc();
establishNewStream();
});
response_timer_ = dispatcher.createTimer([this]() -> void { sendLoadStatsRequest(); });
establishNewStream();
}
Expand Down

0 comments on commit e614e56

Please sign in to comment.