Skip to content

Commit

Permalink
fix: library pagination to 10k to avoid too many postgres query params (
Browse files Browse the repository at this point in the history
  • Loading branch information
zackpollard committed Sep 27, 2024
1 parent dbe5428 commit 789937d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/interfaces/job.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export enum JobName {
}

export const JOBS_ASSET_PAGINATION_SIZE = 1000;
export const JOBS_LIBRARY_PAGINATION_SIZE = 100_000;
export const JOBS_LIBRARY_PAGINATION_SIZE = 10_000;

export interface IBaseJob {
force?: boolean;
Expand Down

0 comments on commit 789937d

Please sign in to comment.