From d258fb302833d22eea8407fda6eb1b1afcef4fb3 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 3 Apr 2019 17:39:38 -0700 Subject: [PATCH] Upgrade gRPC version used in OSS Tensorflow PiperOrigin-RevId: 241840862 --- tensorflow/contrib/cmake/external/grpc.cmake | 2 +- tensorflow/workspace.bzl | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tensorflow/contrib/cmake/external/grpc.cmake b/tensorflow/contrib/cmake/external/grpc.cmake index 30b4e2dbdee..22f4ea89e3c 100644 --- a/tensorflow/contrib/cmake/external/grpc.cmake +++ b/tensorflow/contrib/cmake/external/grpc.cmake @@ -17,7 +17,7 @@ include (ExternalProject) set(GRPC_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc/include) set(GRPC_URL https://github.com/grpc/grpc.git) set(GRPC_BUILD ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc) -set(GRPC_TAG 62688b6a05cc85b47fb77dd408611734253e47e2) +set(GRPC_TAG 4566c2a29ebec0835643b972eb99f4306c4234a3) if(WIN32) # We use unsecure gRPC because boringssl does not build on windows diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl index cb9668f387c..1abecdf3f3b 100755 --- a/tensorflow/workspace.bzl +++ b/tensorflow/workspace.bzl @@ -482,12 +482,12 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""): # WARNING: make sure ncteisen@ and vpai@ are cc-ed on any CL to change the below rule tf_http_archive( name = "grpc", - sha256 = "e1e3a9edbfbe4230bee174d4aa45a15c1ec2b203cedb02d20df3e6345d8fa63e", - strip_prefix = "grpc-62688b6a05cc85b47fb77dd408611734253e47e2", + sha256 = "67a6c26db56f345f7cee846e681db2c23f919eba46dd639b09462d1b6203d28c", + strip_prefix = "grpc-4566c2a29ebec0835643b972eb99f4306c4234a3", system_build_file = clean_dep("//third_party/systemlibs:grpc.BUILD"), urls = [ - "http://mirror.tensorflow.org/github.com/grpc/grpc/archive/62688b6a05cc85b47fb77dd408611734253e47e2.tar.gz", - "https://github.com/grpc/grpc/archive/62688b6a05cc85b47fb77dd408611734253e47e2.tar.gz", + "http://mirror.tensorflow.org/github.com/grpc/grpc/archive/4566c2a29ebec0835643b972eb99f4306c4234a3.tar.gz", + "https://github.com/grpc/grpc/archive/4566c2a29ebec0835643b972eb99f4306c4234a3.tar.gz", ], )