File tree 1 file changed +3
-3
lines changed
ydb/core/kqp/workload_service/actors
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -306,16 +306,16 @@ class TPoolCreatorActor : public TSchemeActorBase<TPoolCreatorActor> {
306
306
}
307
307
}
308
308
309
- void HandleNotifyTxCompletionResult ( ) {
310
- ScheduleRetry (" Transaction completed, doublechecking" );
309
+ void Handle (NSchemeShard::TEvSchemeShard::TEvNotifyTxCompletionResult::TPtr& ev ) {
310
+ ScheduleRetry (TStringBuilder () << " Transaction " << ev-> Get ()-> Record . GetTxId () << " completed, doublechecking" );
311
311
}
312
312
313
313
STFUNC (StateFunc) {
314
314
switch (ev->GetTypeRewrite ()) {
315
315
hFunc (TEvTxUserProxy::TEvProposeTransactionStatus, Handle )
316
316
hFunc (TEvTabletPipe::TEvClientConnected, Handle )
317
317
hFunc (TEvTabletPipe::TEvClientDestroyed, Handle )
318
- sFunc (NSchemeShard::TEvSchemeShard::TEvNotifyTxCompletionResult, HandleNotifyTxCompletionResult )
318
+ hFunc (NSchemeShard::TEvSchemeShard::TEvNotifyTxCompletionResult, Handle )
319
319
IgnoreFunc (NSchemeShard::TEvSchemeShard::TEvNotifyTxCompletionRegistered)
320
320
321
321
default :
You can’t perform that action at this time.
0 commit comments