tomighita commented on code in PR #2879:
URL: https://github.com/apache/iggy/pull/2879#discussion_r2891013602
##########
core/server/src/shard/system/partitions.rs:
##########
@@ -280,13 +281,15 @@ impl IggyShard {
)
});
+ let message_deduplicator =
create_message_deduplicator(&self.config.system).map(Arc::new);
+
let partition = LocalPartition::with_log(
loaded_log,
stats,
std::sync::Arc::new(std::sync::atomic::AtomicU64::new(current_offset)),
consumer_offsets,
consumer_group_offsets,
- None,
+ message_deduplicator,
Review Comment:
[note] I've added this here since the message_deduplicator was always None
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]