aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/bigtable/kernels/bigtable_lib.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/bigtable/kernels/bigtable_lib.cc')
-rw-r--r--tensorflow/contrib/bigtable/kernels/bigtable_lib.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/contrib/bigtable/kernels/bigtable_lib.cc b/tensorflow/contrib/bigtable/kernels/bigtable_lib.cc
index 2514575f30..67bf14c176 100644
--- a/tensorflow/contrib/bigtable/kernels/bigtable_lib.cc
+++ b/tensorflow/contrib/bigtable/kernels/bigtable_lib.cc
@@ -27,10 +27,10 @@ Status GrpcStatusToTfStatus(const ::grpc::Status& status) {
status.error_code() == ::grpc::StatusCode::OUT_OF_RANGE) {
grpc_code = ::grpc::StatusCode::INTERNAL;
}
- return Status(
- static_cast<::tensorflow::error::Code>(status.error_code()),
- strings::StrCat("Error reading from BigTable: ", status.error_message(),
- " (Details: ", status.error_details(), ")"));
+ return Status(static_cast<::tensorflow::error::Code>(status.error_code()),
+ strings::StrCat("Error reading from Cloud Bigtable: ",
+ status.error_message(),
+ " (Details: ", status.error_details(), ")"));
}
string RegexFromStringSet(const std::vector<string>& strs) {