Skip to content

Commit 00dee5e

Browse files
[*] голова передаётся как список TClientBlob
1 parent 1518b41 commit 00dee5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/persqueue/events/internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ struct TEvPQ {
10211021
struct TSuccess {
10221022
THashMap<TString, NPQ::TSeqNoRange> SeqNo; // SourceId -> (MinSeqNo, MaxSeqNo)
10231023
std::deque<NPQ::TDataKey> BodyKeys;
1024-
std::deque<NPQ::TBatch> Head;
1024+
TVector<NPQ::TClientBlob> Head;
10251025
};
10261026

10271027
TEvGetWriteInfoResponse(ui32 cookie, TString message) :
@@ -1033,7 +1033,7 @@ struct TEvPQ {
10331033
TEvGetWriteInfoResponse(ui32 cookie,
10341034
THashMap<TString, NPQ::TSeqNoRange> seqNo,
10351035
std::deque<NPQ::TDataKey> bodyKeys,
1036-
std::deque<NPQ::TBatch> head) :
1036+
TVector<NPQ::TClientBlob> head) :
10371037
Cookie(cookie),
10381038
Result(TSuccess{std::move(seqNo), std::move(bodyKeys), std::move(head)})
10391039
{

0 commit comments

Comments
 (0)