Upgrade gRPC version used in OSS Tensorflow

PiperOrigin-RevId: 241840862
This commit is contained in:
A. Unique TensorFlower 2019-04-03 17:39:38 -07:00 committed by TensorFlower Gardener
parent c91df0db8b
commit d258fb3028
2 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ include (ExternalProject)
set(GRPC_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc/include) set(GRPC_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc/include)
set(GRPC_URL https://github.com/grpc/grpc.git) set(GRPC_URL https://github.com/grpc/grpc.git)
set(GRPC_BUILD ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc) set(GRPC_BUILD ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc)
set(GRPC_TAG 62688b6a05cc85b47fb77dd408611734253e47e2) set(GRPC_TAG 4566c2a29ebec0835643b972eb99f4306c4234a3)
if(WIN32) if(WIN32)
# We use unsecure gRPC because boringssl does not build on windows # We use unsecure gRPC because boringssl does not build on windows

View File

@ -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 # WARNING: make sure ncteisen@ and vpai@ are cc-ed on any CL to change the below rule
tf_http_archive( tf_http_archive(
name = "grpc", name = "grpc",
sha256 = "e1e3a9edbfbe4230bee174d4aa45a15c1ec2b203cedb02d20df3e6345d8fa63e", sha256 = "67a6c26db56f345f7cee846e681db2c23f919eba46dd639b09462d1b6203d28c",
strip_prefix = "grpc-62688b6a05cc85b47fb77dd408611734253e47e2", strip_prefix = "grpc-4566c2a29ebec0835643b972eb99f4306c4234a3",
system_build_file = clean_dep("//third_party/systemlibs:grpc.BUILD"), system_build_file = clean_dep("//third_party/systemlibs:grpc.BUILD"),
urls = [ urls = [
"http://mirror.tensorflow.org/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/62688b6a05cc85b47fb77dd408611734253e47e2.tar.gz", "https://github.com/grpc/grpc/archive/4566c2a29ebec0835643b972eb99f4306c4234a3.tar.gz",
], ],
) )