Skip to content

Commit

Permalink
Fixes #2549. Increased max search results to 10000.
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Olotu <[email protected]>
  • Loading branch information
kolotu committed Sep 28, 2020
1 parent 3e4559b commit 03098c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class ElasticSearchService implements IIndexingService, ISearchService {

private static final String TENANT_ID = "tenantId";

private static final int MAX_SEARCH_RESULTS = 1000;
private static final int MAX_SEARCH_RESULTS = 10000;

private static final String PUBLIC = "public";

Expand Down

0 comments on commit 03098c9

Please sign in to comment.