aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/remote_fused_graph_execute_utils.cc
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2017-03-14 08:23:40 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-14 09:43:41 -0700
commit1c1d6f54574c14ff47257f0e855fbd86e678c828 (patch)
tree7bc255f8df587233b13adb64e7e17248e6c0ec9f /tensorflow/core/kernels/remote_fused_graph_execute_utils.cc
parent40d8721dccfddb2fb144ebcc89f9fce26bc885f5 (diff)
Use or explicitly ignore tensorflow::Status objects.
Change: 150075644
Diffstat (limited to 'tensorflow/core/kernels/remote_fused_graph_execute_utils.cc')
-rw-r--r--tensorflow/core/kernels/remote_fused_graph_execute_utils.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/tensorflow/core/kernels/remote_fused_graph_execute_utils.cc b/tensorflow/core/kernels/remote_fused_graph_execute_utils.cc
index 480dced1c7..eacd18a793 100644
--- a/tensorflow/core/kernels/remote_fused_graph_execute_utils.cc
+++ b/tensorflow/core/kernels/remote_fused_graph_execute_utils.cc
@@ -269,7 +269,8 @@ RemoteFusedGraphExecuteUtils::AddOutputTensorShapeTypeByTensorShapeMap(
shape_inference::ShapeHandle handle;
status = context->MakeShapeFromTensorShape(
input_node_info.second.shape(), &handle);
- shape_refiner->SetShape(node, 0, handle);
+ // TODO(b/32704451): Don't just ignore this status!
+ shape_refiner->SetShape(node, 0, handle).IgnoreError();
is_input_node = true;
}
if (!status.ok()) {