We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c087c commit a015560Copy full SHA for a015560
ydb/core/blobstorage/vdisk/repl/query_donor.h
@@ -68,10 +68,9 @@ namespace NKikimr {
68
}
69
70
if (action) {
71
- const TActorId temp(actorId);
72
LOG_DEBUG_S(*TlsActivationContext, NKikimrServices::BS_VDISK_GET, SelfId() << " sending " << query->ToString()
73
- << " to " << temp);
74
- Send(actorId, query.release());
+ << " to " << actorId);
+ Send(actorId, query.release(), IEventHandle::FlagTrackDelivery);
75
} else {
76
PassAway();
77
@@ -116,6 +115,7 @@ namespace NKikimr {
116
115
117
STRICT_STFUNC(StateFunc,
118
hFunc(TEvBlobStorage::TEvVGetResult, Handle);
+ cFunc(TEvents::TSystem::Undelivered, Step);
119
cFunc(TEvents::TSystem::Poison, PassAway);
120
)
121
};
0 commit comments