- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for fetchNewEvents (0.05 seconds)
-
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
createCapturingHelper("node1@host1", null, capturedBody, createMockResponse(200, "{\"hits\":{\"hits\":[]}}")); setLastEventCheckTime(helper, 1000L); helper.fetchNewEvents(); assertNotNull(capturedBody.get()); assertTrue(capturedBody.get().contains("\"event\"")); assertTrue(capturedBody.get().contains("\"minimum_should_match\":1"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
} /** * Fetches new events from OpenSearch that were created after the last check time. * * @return the list of new events. */ protected List<EventInfo> fetchNewEvents() { final List<EventInfo> events = new ArrayList<>(); final String query = toJson(Map.of( // "query", Map.of("bool", Map.of( // "must", List.of( //Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0)