Skip to content

Commit

Permalink
Fix stucking donor queries (ydb-platform#10470)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvru committed Oct 17, 2024
1 parent a8646ca commit 70e8f50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ydb/core/blobstorage/vdisk/repl/query_donor.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,9 @@ namespace NKikimr {
}

if (action) {
const TActorId temp(actorId);
LOG_DEBUG_S(*TlsActivationContext, NKikimrServices::BS_VDISK_GET, SelfId() << " sending " << query->ToString()
<< " to " << temp);
Send(actorId, query.release());
<< " to " << actorId);
Send(actorId, query.release(), IEventHandle::FlagTrackDelivery);
} else {
PassAway();
}
Expand Down Expand Up @@ -116,6 +115,7 @@ namespace NKikimr {

STRICT_STFUNC(StateFunc,
hFunc(TEvBlobStorage::TEvVGetResult, Handle);
cFunc(TEvents::TSystem::Undelivered, Step);
cFunc(TEvents::TSystem::Poison, PassAway);
)
};
Expand Down

0 comments on commit 70e8f50

Please sign in to comment.