Skip to content

Commit

Permalink
Fixed payload passing
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Nov 25, 2024
1 parent 2264103 commit 42238be
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ydb/library/yql/dq/actors/common/retry_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ class TRetryEventsQueue {
THolder<T> ev = MakeHolder<T>();
ev->Record = Event->Record;
ev->Record.MutableTransportMeta()->SetConfirmedSeqNo(confirmedSeqNo);
for (ui64 i = 0; i < Event->GetPayloadCount(); ++i) {
ev->AddPayload(TRope(Event->GetPayload(i)));
}
return MakeHolder<NActors::IEventHandle>(Recipient, Sender, ev.Release(), NActors::IEventHandle::FlagTrackDelivery, Cookie);
}

Expand Down

0 comments on commit 42238be

Please sign in to comment.