Skip to content

Commit

Permalink
🔧 Increase default and max page size
Browse files Browse the repository at this point in the history
  • Loading branch information
znatty22 committed Aug 8, 2023
1 parent e76435c commit 5ceede9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class Config:
PG_USER, PG_PASS, PG_HOST, PG_PORT, PG_NAME)

# Default number of results per request
DEFAULT_PAGE_LIMIT = 10
DEFAULT_PAGE_LIMIT = 100
# Determines the maximum number of results per request
MAX_PAGE_LIMIT = 100
MAX_PAGE_LIMIT = 1000

INDEXD_URL = os.environ.get('INDEXD_URL', None)
INDEXD_USER = os.environ.get('INDEXD_USER', 'test')
Expand Down

0 comments on commit 5ceede9

Please sign in to comment.