From 370d80aa86f63c8422bd6ea548bcaf237cd52830 Mon Sep 17 00:00:00 2001 From: Gunhan Gulsoy Date: Mon, 23 Sep 2019 14:13:44 -0700 Subject: [PATCH] Fix the call to NewHostPortGrpcChannel in distributed_runtime/master_test PiperOrigin-RevId: 270757646 --- tensorflow/core/distributed_runtime/master_test.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tensorflow/core/distributed_runtime/master_test.cc b/tensorflow/core/distributed_runtime/master_test.cc index 62b18a45b1e..04ea2b033ba 100644 --- a/tensorflow/core/distributed_runtime/master_test.cc +++ b/tensorflow/core/distributed_runtime/master_test.cc @@ -50,7 +50,8 @@ class MasterTest : public ::testing::Test { (*options.config.mutable_device_count())["GPU"] = 0; TF_CHECK_OK(test::TestCluster::MakeTestCluster(options, 2, &cluster_)); SharedGrpcChannelPtr channel_ptr; - TF_CHECK_OK(NewHostPortGrpcChannel(cluster_->targets()[0], &channel_ptr)); + TF_CHECK_OK(NewHostPortGrpcChannel( + cluster_->targets()[0], &options.config.rpc_options(), &channel_ptr)); master_ = grpc::MasterService::NewStub(channel_ptr); }