Arsnael commented on code in PR #1653: URL: https://github.com/apache/james-project/pull/1653#discussion_r1272989626
########## mailbox/cassandra/src/main/java/org/apache/james/mailbox/cassandra/mail/CassandraMessageMapper.java: ########## @@ -170,7 +170,16 @@ public Mono<MailboxCounters> getMailboxCountersReactive(Mailbox mailbox) { } return Mono.just(counters); }) - .doOnNext(counters -> readRepair(mailbox, counters)); + .doOnNext(counters -> { + if (this.cassandraConfiguration.getMailboxReadRepair() > 0) { Review Comment: I believe what chibenwa is saying is: - `getMailboxReadRepair()` is used in `CassandraMailboxMapper` - for `CassandraMessageMapper `, we use `getMailboxCountersReadRepairChanceMax()` and/or `getMailboxCountersReadRepairChanceOneHundred()` => for example: https://github.com/apache/james-project/blob/master/mailbox/cassandra/src/main/java/org/apache/james/mailbox/cassandra/mail/CassandraMessageMapper.java#L197 -- 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: notifications-unsubscr...@james.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org For additional commands, e-mail: notifications-h...@james.apache.org