Skip to content

Commit

Permalink
Remove experimental tags from uses of gRPC C++ callback API.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 379299746
  • Loading branch information
tensorflower-gardener authored and tensorflow-copybara committed Jun 14, 2021
1 parent 3225368 commit 97aa2db
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ void PredictionServiceGrpc::Predict(
std::function<void(::grpc::Status)> wrapped_callback =
[callback](::grpc::Status status) { callback(FromGrpcStatus(status)); };

stub_->experimental_async()->Predict(rpc, request, response,
wrapped_callback);
stub_->async()->Predict(rpc, request, response, wrapped_callback);
}

} // namespace serving
Expand Down

0 comments on commit 97aa2db

Please sign in to comment.