Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.2.12, 2.4.3, 2.5.2
-
None
Description
There is a little typo in the implementation of EventJournal#skipTo method which makes it pretty useless because it is skipping always to the last EventBundle. I attach the patch inlined because it is really small:
Index: src/main/java/org/apache/jackrabbit/core/observation/EventJournalImpl.java
===================================================================
— src/main/java/org/apache/jackrabbit/core/observation/EventJournalImpl.java (revision 1391154)
+++ src/main/java/org/apache/jackrabbit/core/observation/EventJournalImpl.java (working copy)
@@ -135,7 +135,7 @@
// get skip map for this journal
SortedMap<Long, Long> skipMap = getSkipMap();
synchronized (skipMap) {
- SortedMap<Long, Long> head = skipMap.headMap(new Long(time));
+ SortedMap<Long, Long> head = skipMap.headMap(new Long(date));
if (!head.isEmpty()) {
eventBundleBuffer.clear();
lastRevision = head.get(head.lastKey());