aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlek5andr-Kotov <152866892+Alek5andr-Kotov@users.noreply.github.com>2024-01-24 16:23:24 +0300
committerGitHub <noreply@github.com>2024-01-24 16:23:24 +0300
commit72e7bfce9030f78cd1245715596935f3bb8fe38c (patch)
tree9389c356ffd0849081a24b0040879ab6581b05b8
parent526ec536a3f230da0fef2bd226ae53be47df8610 (diff)
downloadydb-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.cpp3
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;