aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/grpc/server/grpc_request_base.h
diff options
context:
space:
mode:
authorspuchin <spuchin@yandex-team.ru>2022-02-10 16:48:16 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:16 +0300
commitaab7e440a1750bc0841b355dcc4f388f31e5f5e3 (patch)
treec4ea3bd0ac108e34c329b483ba6ce11e25dfd005 /library/cpp/grpc/server/grpc_request_base.h
parent47dc960d070b29aa93972d1d49088393af89383f (diff)
downloadydb-aab7e440a1750bc0841b355dcc4f388f31e5f5e3.tar.gz
Restoring authorship annotation for <spuchin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/grpc/server/grpc_request_base.h')
-rw-r--r--library/cpp/grpc/server/grpc_request_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/grpc/server/grpc_request_base.h b/library/cpp/grpc/server/grpc_request_base.h
index fcfce1c181..740c3c4fdd 100644
--- a/library/cpp/grpc/server/grpc_request_base.h
+++ b/library/cpp/grpc/server/grpc_request_base.h
@@ -58,11 +58,11 @@ public:
//! Send common response (The request shoult be created for protobuf response type)
//! Implementation can swap protobuf message
- virtual void Reply(NProtoBuf::Message* resp, ui32 status = 0) = 0;
+ virtual void Reply(NProtoBuf::Message* resp, ui32 status = 0) = 0;
//! Send serialised response (The request shoult be created for bytes response type)
//! Implementation can swap ByteBuffer
- virtual void Reply(grpc::ByteBuffer* resp, ui32 status = 0) = 0;
+ virtual void Reply(grpc::ByteBuffer* resp, ui32 status = 0) = 0;
//! Send grpc UNAUTHENTICATED status
virtual void ReplyUnauthenticated(const TString& in) = 0;