Skip to content

Commit

Permalink
Filter users for quicker load
Browse files Browse the repository at this point in the history
  • Loading branch information
bbckr committed Mar 19, 2024
1 parent b6b5ea1 commit 7e09db2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/gitlab-catalog-backend/src/GitlabUserProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ export class GitlabUserProcessor implements CatalogProcessor {
try {
members = await this.gitlab!.Users.all({
perPage: GITLAB_PER_PAGE_LIMIT,
active: true,
withoutProjectBots: true,
});
} catch (error) {
this.logger.error(`Error loading gitlab users: ${error}`);
Expand Down

0 comments on commit 7e09db2

Please sign in to comment.