File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,11 @@ class TGRpcRequestProxySimple
86
86
request->SendResult (*result, Ydb::StatusIds::SUCCESS);
87
87
}
88
88
89
+ void Handle (TEvRequestAuthAndCheck::TPtr& ev, const TActorContext&) {
90
+ ev->Get ()->FinishSpan ();
91
+ ev->Get ()->ReplyWithYdbStatus (Ydb::StatusIds::SUCCESS);
92
+ }
93
+
89
94
void Handle (TEvProxyRuntimeEvent::TPtr& event, const TActorContext&) {
90
95
IRequestProxyCtx* requestBaseCtx = event->Get ();
91
96
TString validationError;
@@ -221,6 +226,7 @@ void TGRpcRequestProxySimple::StateFunc(TAutoPtr<IEventHandle>& ev) {
221
226
hFunc (TEvents::TEvUndelivered, HandleUndelivery);
222
227
HFunc (TEvListEndpointsRequest, PreHandle);
223
228
HFunc (TEvProxyRuntimeEvent, PreHandle);
229
+ HFunc (TEvRequestAuthAndCheck, PreHandle);
224
230
default :
225
231
Y_ABORT (" Unknown request: %u\n " , ev->GetTypeRewrite ());
226
232
break ;
You can’t perform that action at this time.
0 commit comments