[
https://issues.apache.org/jira/browse/CAMEL-10454?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15650605#comment-15650605
]
Claus Ibsen commented on CAMEL-10454:
-------------------------------------
Yes that looks like a bug, you are welcome to provide a PR or patch
http://camel.apache.org/contributing
> Unclear piece in IdempotentConsumer.java
> ----------------------------------------
>
> Key: CAMEL-10454
> URL: https://issues.apache.org/jira/browse/CAMEL-10454
> Project: Camel
> Issue Type: Improvement
> Components: camel-core
> Reporter: Boris Treukhov
> Priority: Minor
>
> Current implementation of IdempotentConsumer.java has very strange check on
> whether IdempotentRepository contains the key - if it's
> ExchangeIdempotentRepository then the result of "contains()" check is not
> inverted(i.e. there is no NOT operator), while for other types of
> IdempotentRepository it IS inverted with "!".
> // check if we already have the key
> if (idempotentRepository instanceof
> ExchangeIdempotentRepository) {
> newKey = ((ExchangeIdempotentRepository<String>)
> idempotentRepository).contains(exchange, messageId);
> } else {
> newKey = !idempotentRepository.contains(messageId);
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)