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
18 changes: 0 additions & 18 deletions .azure-pipelines/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,6 @@ stages:
parameters:
ciTarget: $(CI_TARGET)

- stage: test_gcc
dependsOn: ["check"]
pool: "x64-large"
jobs:
- job: test_gcc
displayName: "do_ci.sh"
strategy:
maxParallel: 1
matrix:
test_gcc:
CI_TARGET: "test_gcc"
timeoutInMinutes: 120
steps:
- template: bazel.yml
parameters:
ciTarget: $(CI_TARGET)

- stage: sanitizers
dependsOn: ["test"]
pool: "x64-large"
Expand Down Expand Up @@ -119,7 +102,6 @@ stages:
- stage: release
dependsOn:
- "clang_tidy"
- "test_gcc"
- "sanitizers"
- "coverage"
condition: eq(variables['PostSubmit'], true)
Expand Down
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 = "c4fe2aca957b977e4c954d325fb423cde51ffec8"
ENVOY_SHA = "468a6aa58b63eef6e0aa266acb74c219c8ad0216c77d34262474f1fe1aaafa74"
ENVOY_COMMIT = "0f0f675c22de944889298e0787e107265367b367"
ENVOY_SHA = "711446e6eedbced802d95e84303b6215e116bc68bfde55d8ab429dad1b9857cd"

HDR_HISTOGRAM_C_VERSION = "0.11.2" # October 12th, 2020
HDR_HISTOGRAM_C_SHA = "637f28b5f64de2e268131e4e34e6eef0b91cf5ff99167db447d9b2825eae6bad"
Expand Down
3 changes: 2 additions & 1 deletion source/client/process_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ class ClusterManagerFactory : public Envoy::Upstream::ProdClusterManagerFactory
Envoy::Http::HttpConnPoolImplBase* pool) {
Envoy::Http::CodecClientPtr codec{new Envoy::Http::CodecClientProd(
Envoy::Http::CodecClient::Type::HTTP1, std::move(data.connection_),
data.host_description_, pool->dispatcher(), pool->randomGenerator())};
data.host_description_, pool->dispatcher(), pool->randomGenerator(),
pool->transportSocketOptions())};
return codec;
},
protocols);
Expand Down