diff --git a/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultGithubApplicationService.java b/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultGithubApplicationService.java index ca5cd9e74fe1f77d5f37ec1cc312b614519d0c12..30e94ec8575d02141046a5e30f7211cffa2ab731 100644 --- a/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultGithubApplicationService.java +++ b/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultGithubApplicationService.java @@ -148,7 +148,11 @@ public class DefaultGithubApplicationService implements GithubApplicationService // build query to do fetch of records for currently active application MultivaluedMap<String, String> params = new MultivaluedMapImpl<>(); params.add(GitEcaParameterNames.APPLICATION_ID_RAW, Integer.toString(config.github().appId())); - return dao.get(new RDBMSQuery<>(wrap, filters.get(GithubApplicationInstallation.class), params)); + + // we don't want to use the limit, as we want to pull all of the records we can find + RDBMSQuery<GithubApplicationInstallation> q = new RDBMSQuery<>(wrap, filters.get(GithubApplicationInstallation.class), params); + q.setUseLimit(false); + return dao.get(q); } }