From 97648442cd3124b49f4453bf86a8f7f715f9b734 Mon Sep 17 00:00:00 2001 From: tangwei12 Date: Thu, 21 Jun 2018 11:37:04 +0800 Subject: [PATCH] merge develop --- paddle/fluid/operators/distributed/grpc_server.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/paddle/fluid/operators/distributed/grpc_server.cc b/paddle/fluid/operators/distributed/grpc_server.cc index b0f2704250..218a1f8562 100644 --- a/paddle/fluid/operators/distributed/grpc_server.cc +++ b/paddle/fluid/operators/distributed/grpc_server.cc @@ -195,7 +195,8 @@ class RequestCheckpointNotify final : public RequestBase { : RequestBase(service, cq, request_handler, req_id), responder_(&ctx_) { request_.reset(new VariableResponse(request_handler->scope(), request_handler->dev_ctx(), true)); - int method_id = static_cast(detail::GrpcMethod::kCheckpointNotify); + int method_id = + static_cast(distributed::GrpcMethod::kCheckpointNotify); service_->RequestAsyncUnary( method_id, &ctx_, request_.get(), &responder_, cq_, cq_, reinterpret_cast(static_cast(req_id))); -- GitLab