Skip to content

Commit

Permalink
#2856 Refactor FessUrlQueueService to use superclass fetchUrlQueueLis…
Browse files Browse the repository at this point in the history
…t method
  • Loading branch information
marevol committed Nov 4, 2024
1 parent 036ebd6 commit 68ca7e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ protected List<EsUrlQueue> fetchUrlQueueList(final String sessionId) {
} else if (!"sequential".equals(crawlOrder)) {
logger.warn("Invalid crawl order specified: {}. Falling back to sequential.", crawlOrder);
}
return getList(EsUrlQueue.class, sessionId, null, 0, pollingFetchSize, SortBuilders.fieldSort(CREATE_TIME).order(SortOrder.ASC));
return super.fetchUrlQueueList(sessionId);
}
}

0 comments on commit 68ca7e1

Please sign in to comment.