From 72e7bfce9030f78cd1245715596935f3bb8fe38c Mon Sep 17 00:00:00 2001 From: Alek5andr-Kotov <152866892+Alek5andr-Kotov@users.noreply.github.com> Date: Wed, 24 Jan 2024 16:23:24 +0300 Subject: [PATCH] [-] the UseDeduplication flag was reset in the TPartitionWriter options (#1256) --- ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp | 3 +-- 1 file changed, 1 insertion(+), 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 e91ab6821151..20dad1f11416 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;