From 97807df0af0e527a205593d28497866e79003e54 Mon Sep 17 00:00:00 2001 From: JinHai-CN Date: Fri, 22 Nov 2019 20:30:44 +0800 Subject: [PATCH] Fix lint --- core/src/server/grpc_impl/request/GrpcBaseRequest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp b/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp index 2aa96c5331..0f46217057 100644 --- a/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp +++ b/core/src/server/grpc_impl/request/GrpcBaseRequest.cpp @@ -90,8 +90,8 @@ GrpcBaseRequest::SetStatus(ErrorCode error_code, const std::string& error_msg) { std::string GrpcBaseRequest::TableNotExistMsg(const std::string& table_name) { return "Table " + table_name + - " does not exist. Use milvus.has_table to verify whether the table exists. You also can check whether the table name " - "exists."; + " does not exist. Use milvus.has_table to verify whether the table exists. " + "You also can check whether the table name exists."; } Status