diff options
author | Alek5andr-Kotov <152866892+Alek5andr-Kotov@users.noreply.github.com> | 2024-01-24 16:23:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 16:23:24 +0300 |
commit | 72e7bfce9030f78cd1245715596935f3bb8fe38c (patch) | |
tree | 9389c356ffd0849081a24b0040879ab6581b05b8 | |
parent | 526ec536a3f230da0fef2bd226ae53be47df8610 (diff) | |
download | ydb-72e7bfce9030f78cd1245715596935f3bb8fe38c.tar.gz |
[-] the UseDeduplication flag was reset in the TPartitionWriter options (#1256)
-rw-r--r-- | ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp b/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp index e91ab682115..20dad1f1141 100644 --- a/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp +++ b/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp @@ -483,8 +483,7 @@ void TWriteSessionActor::ProceedPartition(const ui32 partition, const TActorCont } TPartitionWriterOpts opts; - opts.WithDeduplication(false) - .WithSourceId(SourceId); + opts.WithSourceId(SourceId); Writer = ctx.RegisterWithSameMailbox(NPQ::CreatePartitionWriter(ctx.SelfID, PartitionTabletId, Partition, opts)); State = ES_WAIT_WRITER_INIT; |