Clear cancel callback when gRPC eager call returns with state.

PiperOrigin-RevId: 317393892
Change-Id: Ife800821494dd4cc2992eec9a5470d989596a6d7
This commit is contained in:
Haoyu Zhang 2020-06-19 15:43:22 -07:00 committed by TensorFlower Gardener
parent fb5a3c3c6a
commit 18c43b7bd4

View File

@ -81,6 +81,7 @@ class GrpcEagerServiceImpl : public AsyncServiceInterface {
local_impl_.RunComponentFunction(call_opts.get(), &call->request,
&call->response,
[call, call_opts](const Status& s) {
call->ClearCancelCallback();
call->SendResponse(ToGrpcStatus(s));
});
});