mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-02 17:31:14 -05:00
update page_size to 20 from 50
This commit is contained in:
@@ -84,7 +84,7 @@ class Config(object):
|
|||||||
SQLALCHEMY_POOL_TIMEOUT = 30
|
SQLALCHEMY_POOL_TIMEOUT = 30
|
||||||
SQLALCHEMY_POOL_RECYCLE = 300
|
SQLALCHEMY_POOL_RECYCLE = 300
|
||||||
SQLALCHEMY_STATEMENT_TIMEOUT = 1200
|
SQLALCHEMY_STATEMENT_TIMEOUT = 1200
|
||||||
PAGE_SIZE = 50
|
PAGE_SIZE = 20
|
||||||
API_PAGE_SIZE = 250
|
API_PAGE_SIZE = 250
|
||||||
REDIS_URL = cloud_config.redis_url
|
REDIS_URL = cloud_config.redis_url
|
||||||
REDIS_ENABLED = getenv("REDIS_ENABLED", "1") == "1"
|
REDIS_ENABLED = getenv("REDIS_ENABLED", "1") == "1"
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ def dao_get_jobs_by_service_id(
|
|||||||
*,
|
*,
|
||||||
limit_days=None,
|
limit_days=None,
|
||||||
page=1,
|
page=1,
|
||||||
page_size=50,
|
page_size=20,
|
||||||
statuses=None,
|
statuses=None,
|
||||||
):
|
):
|
||||||
query_filter = [
|
query_filter = [
|
||||||
|
|||||||
Reference in New Issue
Block a user