diff --git a/istio.deps b/istio.deps index 1bb301b3986..e4d5ea71c25 100644 --- a/istio.deps +++ b/istio.deps @@ -4,7 +4,7 @@ "name": "ISTIO_API", "repoName": "api", "file": "repositories.bzl", - "lastStableSHA": "85f06ac32da4744449da69643bf9d4e149e14892" + "lastStableSHA": "214c7598afb74f7f4dea49f77e45832c49382a15" }, { "_comment": "", diff --git a/repositories.bzl b/repositories.bzl index 4be45a190fd..719413dab4a 100644 --- a/repositories.bzl +++ b/repositories.bzl @@ -113,7 +113,7 @@ cc_library( actual = "@googletest_git//:googletest_prod", ) -ISTIO_API = "85f06ac32da4744449da69643bf9d4e149e14892" +ISTIO_API = "214c7598afb74f7f4dea49f77e45832c49382a15" def mixerapi_repositories(bind=True): BUILD = """ diff --git a/src/istio/mixerclient/create_global_dictionary.py b/src/istio/mixerclient/create_global_dictionary.py index 3bfabdf2f08..c42e64b965c 100755 --- a/src/istio/mixerclient/create_global_dictionary.py +++ b/src/istio/mixerclient/create_global_dictionary.py @@ -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)