Skip to content

Commit f85f49c

Browse files
PiotrSikorarshriram
authored andcommitted
Update Envoy SHA to latest. (#1852)
Signed-off-by: Piotr Sikora <[email protected]>
1 parent 5122daa commit f85f49c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bind(
3030
)
3131

3232
# When updating envoy sha manually please update the sha in istio.deps file also
33-
ENVOY_SHA = "3b05bffcbaedaf6d112ba38ad58121ba5aa5af51"
33+
ENVOY_SHA = "01d2e16e973a76cc05f5e9e5c7a74f73498bc6c2"
3434

3535
http_archive(
3636
name = "envoy",

istio.deps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"name": "ENVOY_SHA",
1212
"repoName": "envoyproxy/envoy",
1313
"file": "WORKSPACE",
14-
"lastStableSHA": "3b05bffcbaedaf6d112ba38ad58121ba5aa5af51"
14+
"lastStableSHA": "01d2e16e973a76cc05f5e9e5c7a74f73498bc6c2"
1515
}
1616
]

src/envoy/http/mixer/report_data.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class ReportData : public ::istio::control::http::ReportData {
100100

101101
bool GetDestinationUID(std::string *uid) const override {
102102
if (info_.upstreamHost()) {
103-
return Utils::GetDestinationUID(info_.upstreamHost()->metadata(), uid);
103+
return Utils::GetDestinationUID(*info_.upstreamHost()->metadata(), uid);
104104
}
105105
return false;
106106
}

src/envoy/tcp/mixer/filter.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ bool Filter::GetDestinationIpPort(std::string* str_ip, int* port) const {
173173
bool Filter::GetDestinationUID(std::string* uid) const {
174174
if (filter_callbacks_->upstreamHost()) {
175175
return Utils::GetDestinationUID(
176-
filter_callbacks_->upstreamHost()->metadata(), uid);
176+
*filter_callbacks_->upstreamHost()->metadata(), uid);
177177
}
178178
return false;
179179
}

0 commit comments

Comments
 (0)