Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Kuat Yessenov <[email protected]>
  • Loading branch information
kyessenov committed Sep 5, 2023
1 parent 5de14af commit ce60e4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions source/common/stream_info/uint32_accessor_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ class UInt32AccessorImpl : public UInt32Accessor {
message->set_value(value_);
return message;
}
absl::optional<std::string> serializeAsString() const override {
return absl::StrCat(value_);
}
absl::optional<std::string> serializeAsString() const override { return absl::StrCat(value_); }

// From UInt32Accessor.
void increment() override { value_++; }
Expand Down
4 changes: 2 additions & 2 deletions source/extensions/clusters/dynamic_forward_proxy/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ envoy_cc_extension(
deps = [
"//envoy/router:string_accessor_interface",
"//source/common/network:transport_socket_options_lib",
"//source/common/router:string_accessor_lib",
"//source/common/stream_info:uint32_accessor_lib",
"//source/common/upstream:cluster_factory_lib",
"//source/extensions/clusters/common:logical_host_lib",
"//source/extensions/common/dynamic_forward_proxy:cluster_store",
"//source/extensions/common/dynamic_forward_proxy:dns_cache_interface",
"//source/extensions/common/dynamic_forward_proxy:dns_cache_manager_impl",
"//source/common/router:string_accessor_lib",
"//source/common/stream_info:uint32_accessor_lib",
"//source/extensions/transport_sockets/tls/cert_validator:cert_validator_lib",
"@envoy_api//envoy/config/cluster/v3:pkg_cc_proto",
"@envoy_api//envoy/config/endpoint/v3:pkg_cc_proto",
Expand Down

0 comments on commit ce60e4e

Please sign in to comment.