Skip to content

Commit

Permalink
update API sha. (#1927)
Browse files Browse the repository at this point in the history
  • Loading branch information
yangminzhu authored and istio-testing committed Aug 21, 2018
1 parent 4865583 commit 4ee7e8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion istio.deps
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "ISTIO_API",
"repoName": "api",
"file": "repositories.bzl",
"lastStableSHA": "85f06ac32da4744449da69643bf9d4e149e14892"
"lastStableSHA": "214c7598afb74f7f4dea49f77e45832c49382a15"
},
{
"_comment": "",
Expand Down
2 changes: 1 addition & 1 deletion repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ cc_library(
actual = "@googletest_git//:googletest_prod",
)

ISTIO_API = "85f06ac32da4744449da69643bf9d4e149e14892"
ISTIO_API = "214c7598afb74f7f4dea49f77e45832c49382a15"

def mixerapi_repositories(bind=True):
BUILD = """
Expand Down
2 changes: 1 addition & 1 deletion src/istio/mixerclient/create_global_dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
with open(sys.argv[1]) as src_file:
for line in src_file:
if line.startswith("-"):
all_words += " \"" + line[1:].strip() + "\",\n"
all_words += " \"" + line[1:].strip().replace("\"", "\\\"") + "\",\n"

print (TOP + all_words + BOTTOM)

Expand Down

0 comments on commit 4ee7e8e

Please sign in to comment.