Skip to content

Commit

Permalink
Update to use disable_check_calls. (envoyproxy#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
qiwzhang authored Nov 22, 2017
1 parent 3d7f747 commit 6ac3e9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/envoy/mixer/config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ void MixerConfig::CreateLegacyRouteConfig(
bool disable_check, bool disable_report,
const std::map<std::string, std::string>& attributes,
ServiceConfig* config) {
config->set_enable_mixer_check(!disable_check);
config->set_enable_mixer_report(!disable_report);
config->set_disable_check_calls(disable_check);
config->set_disable_report_calls(disable_report);

AttributesBuilder builder(config->mutable_mixer_attributes());
for (const auto& it : attributes) {
Expand Down
2 changes: 1 addition & 1 deletion src/envoy/mixer/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
################################################################################
#

MIXER_CLIENT = "395f370596d9710654762856627984adf789c1cf"
MIXER_CLIENT = "d264f77e8d77f5d7f737c94015af980702d08ebd"

def mixer_client_repositories(bind=True):
native.git_repository(
Expand Down

0 comments on commit 6ac3e9b

Please sign in to comment.