From 88ac910d92937d2b00685e52c1a575a05adac445 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 31 Jan 2025 13:13:28 -0800 Subject: [PATCH] fix test --- app/dao/notifications_dao.py | 1 + app/job/rest.py | 1 + 2 files changed, 2 insertions(+) diff --git a/app/dao/notifications_dao.py b/app/dao/notifications_dao.py index 71dee7614..ab34d134e 100644 --- a/app/dao/notifications_dao.py +++ b/app/dao/notifications_dao.py @@ -270,6 +270,7 @@ def get_notifications_for_job( def get_recent_notifications_for_job( service_id, job_id, filter_dict=None, page=1, page_size=None ): + print(f"FILTER_DICT AT DAO LEVEL {filter_dict}") if page_size is None: page_size = current_app.config["PAGE_SIZE"] diff --git a/app/job/rest.py b/app/job/rest.py index 21ff38958..7506b4030 100644 --- a/app/job/rest.py +++ b/app/job/rest.py @@ -128,6 +128,7 @@ def get_all_notifications_for_service_job(service_id, job_id): @job_blueprint.route("//recent_notifications", methods=["GET"]) def get_recent_notifications_for_service_job(service_id, job_id): data = notifications_filter_schema.load(request.args) + print(f"DATA COMING IN AT REST LEVEL IS {data}") page = data["page"] if "page" in data else 1 page_size = ( data["page_size"]