File tree 1 file changed +4
-3
lines changed
ydb/core/grpc_services/query
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ class TExecuteQueryRPC : public TActorBootstrapped<TExecuteQueryRPC> {
211
211
HFunc (TRpcServices::TEvGrpcNextReply, Handle );
212
212
HFunc (NKqp::TEvKqpExecuter::TEvStreamData, Handle );
213
213
HFunc (NKqp::TEvKqp::TEvQueryResponse, Handle );
214
- HFunc (NKikimr::NGRpcService::TEvSubscribeGrpcCancel, Handle );
214
+ hFunc (NKikimr::NGRpcService::TEvSubscribeGrpcCancel, Handle );
215
215
default :
216
216
UnexpectedEvent (__func__, ev);
217
217
}
@@ -278,8 +278,9 @@ class TExecuteQueryRPC : public TActorBootstrapped<TExecuteQueryRPC> {
278
278
}
279
279
}
280
280
281
- void Handle (NKikimr::NGRpcService::TEvSubscribeGrpcCancel::TPtr&, const TActorContext&) {
282
- // Ignore event now
281
+ void Handle (NKikimr::NGRpcService::TEvSubscribeGrpcCancel::TPtr& ev) {
282
+ auto as = TActivationContext::ActorSystem ();
283
+ PassSubscription (ev->Get (), Request_.get (), as);
283
284
}
284
285
285
286
void Handle (TEvents::TEvWakeup::TPtr& ev, const TActorContext& ctx) {
You can’t perform that action at this time.
0 commit comments