Skip to content

Commit

Permalink
Revert "Update Envoy SHA to latest. (envoyproxy#1852)" (envoyproxy#1854)
Browse files Browse the repository at this point in the history
This reverts commit f85f49c.
  • Loading branch information
mandarjog authored Jul 17, 2018
1 parent 91f9566 commit 121faee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ bind(
)

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

http_archive(
name = "envoy",
Expand Down
2 changes: 1 addition & 1 deletion istio.deps
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"name": "ENVOY_SHA",
"repoName": "envoyproxy/envoy",
"file": "WORKSPACE",
"lastStableSHA": "01d2e16e973a76cc05f5e9e5c7a74f73498bc6c2"
"lastStableSHA": "3b05bffcbaedaf6d112ba38ad58121ba5aa5af51"
}
]
2 changes: 1 addition & 1 deletion src/envoy/http/mixer/report_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ReportData : public ::istio::control::http::ReportData {

bool GetDestinationUID(std::string *uid) const override {
if (info_.upstreamHost()) {
return Utils::GetDestinationUID(*info_.upstreamHost()->metadata(), uid);
return Utils::GetDestinationUID(info_.upstreamHost()->metadata(), uid);
}
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion src/envoy/tcp/mixer/filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ bool Filter::GetDestinationIpPort(std::string* str_ip, int* port) const {
bool Filter::GetDestinationUID(std::string* uid) const {
if (filter_callbacks_->upstreamHost()) {
return Utils::GetDestinationUID(
*filter_callbacks_->upstreamHost()->metadata(), uid);
filter_callbacks_->upstreamHost()->metadata(), uid);
}
return false;
}
Expand Down

0 comments on commit 121faee

Please sign in to comment.