Skip to content

Commit

Permalink
Merge pull request #42 from yrodiere/page-size
Browse files Browse the repository at this point in the history
Set the page size to 50
  • Loading branch information
yrodiere authored Nov 9, 2023
2 parents 33132ad + ebd8277 commit dcc3904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/quarkus/search/app/SearchService.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@Path("/")
public class SearchService {

private static final Integer PAGE_SIZE = 20;
private static final Integer PAGE_SIZE = 50;

@Inject
SearchSession session;
Expand Down

0 comments on commit dcc3904

Please sign in to comment.