We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8950256 commit dbeed94Copy full SHA for dbeed94
ydb/core/persqueue/pq_l2_cache.h
@@ -52,7 +52,7 @@ class TPersQueueCacheL2 : public TActorBootstrapped<TPersQueueCacheL2> {
52
, Offset(blob.Offset)
53
, PartNo(blob.PartNo)
54
{
55
- KeyHash = Hash128to32(TabletId, (static_cast<ui64>(Partition.InternalPartitionId) << 17) + PartNo + Partition.IsSupportivePartition() ? 0 : (1 << 16));
+ KeyHash = Hash128to32(TabletId, (static_cast<ui64>(Partition.InternalPartitionId) << 17) + PartNo + (Partition.IsSupportivePartition() ? 0 : (1 << 16)));
56
KeyHash = Hash128to32(KeyHash, Offset);
57
}
58
0 commit comments