Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

ENVOY_COMMIT = "129a9f1139b7bf2d4ef1223e5b04af1ab14d817b" # Sep 13, 2021
ENVOY_SHA = "18ba32a7c3f4bcf02b0ab021eed6e39cb584e726af584b33d613db1356ed2784"
ENVOY_COMMIT = "037064f27e96bf26d403ff7798aafb67db6d6030" # Sep 20, 2021
ENVOY_SHA = "187491b0e75943fa98620c969ed321ce4a9643602a5b0a4aeb99f43593512632"

HDR_HISTOGRAM_C_VERSION = "0.11.2" # October 12th, 2020
HDR_HISTOGRAM_C_SHA = "637f28b5f64de2e268131e4e34e6eef0b91cf5ff99167db447d9b2825eae6bad"
Expand Down
1 change: 1 addition & 0 deletions extensions_build_config.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ DISABLED_BY_DEFAULT_EXTENSIONS = {
# need to directly reference Envoy extensions.
EXTENSION_CONFIG_VISIBILITY = ["//visibility:public"]
EXTENSION_PACKAGE_VISIBILITY = ["//visibility:public"]
CONTRIB_EXTENSION_PACKAGE_VISIBILITY = ["//:contrib_library"]
4 changes: 2 additions & 2 deletions source/client/process_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ class ClusterManagerFactory : public Envoy::Upstream::ProdClusterManagerFactory
const Envoy::Http::Protocol& protocol = protocols[0];
if (protocol == Envoy::Http::Protocol::Http11 || protocol == Envoy::Http::Protocol::Http10) {
auto* h1_pool = new Http1PoolImpl(
host, priority, dispatcher, options, transport_socket_options, api_.randomGenerator(),
state,
host, priority, dispatcher, options, transport_socket_options,
context_.api().randomGenerator(), state,
[](Envoy::Http::HttpConnPoolImplBase* pool) {
return std::make_unique<Envoy::Http::Http1::ActiveClient>(*pool);
},
Expand Down