From f3569f371812fd21b928bf2041ffd8141cf2ff58 Mon Sep 17 00:00:00 2001 From: gukecai Date: Tue, 1 Dec 2020 10:32:15 +0800 Subject: [PATCH] use real dispatcher func --- mindspore_serving/ccsrc/master/restful/http_process.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mindspore_serving/ccsrc/master/restful/http_process.cc b/mindspore_serving/ccsrc/master/restful/http_process.cc index 0cf0ece..c484603 100644 --- a/mindspore_serving/ccsrc/master/restful/http_process.cc +++ b/mindspore_serving/ccsrc/master/restful/http_process.cc @@ -690,9 +690,9 @@ Status RestfulService::RunRestful(const std::shared_ptr &restful } MSI_TIME_STAMP_START(Predict) - // status = dispatcher_->Dispatch(request, reply); + status = dispatcher_->Dispatch(request, reply); - FadeReply(request, reply); + // FadeReply(request, reply); MSI_TIME_STAMP_END(Predict) if (status != SUCCESS) { std::string error_msg = status.StatusMessage();