Skip to content

Commit

Permalink
Fix pageSize in AgentCertRequestServlet
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarco76 committed Oct 30, 2024
1 parent 250c347 commit 9fd6f3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public CertRequestInfos listRequests(String requestState, String requestType,
filter,
maxTime,
start,
pageSize + 1);
pageSize);

while(reqs.hasNext()) {
Request request = reqs.next().toRequest();
Expand Down

0 comments on commit 9fd6f3f

Please sign in to comment.