Skip to content

Commit

Permalink
Merge fba6aaf into f2b72c6
Browse files Browse the repository at this point in the history
  • Loading branch information
FloatingCrowbar authored Mar 4, 2024
2 parents f2b72c6 + fba6aaf commit e4df981
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ydb/core/persqueue/partition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ void TPartition::Handle(TEvPQ::TEvBlobResponse::TPtr& ev, const TActorContext& c
TabletCounters.Cumulative()[COUNTER_PQ_READ_BYTES].Increment(resp->ByteSize());
}
ctx.Send(info.Destination != 0 ? Tablet : ctx.SelfID, answer.Event.Release());
OnReadRequestFinished(cookie, answer.Size, info.User, ctx);
OnReadRequestFinished(info.Destination, answer.Size, info.User, ctx);
}

void TPartition::Handle(TEvPQ::TEvError::TPtr& ev, const TActorContext& ctx) {
Expand Down
2 changes: 1 addition & 1 deletion ydb/core/persqueue/partition_read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ void TPartition::ProcessRead(const TActorContext& ctx, TReadInfo&& info, const u
TabletCounters.Cumulative()[COUNTER_PQ_READ_BYTES].Increment(resp->ByteSize());

ctx.Send(info.Destination != 0 ? Tablet : ctx.SelfID, answer.Event.Release());
OnReadRequestFinished(cookie, answer.Size, info.User, ctx);
OnReadRequestFinished(info.Destination, answer.Size, info.User, ctx);
return;
}

Expand Down

0 comments on commit e4df981

Please sign in to comment.