From 84e46f1ef2e25fb9265e5ed5f199f9927271d46f Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 11 Oct 2024 10:29:13 -0700 Subject: [PATCH] fix core daos --- app/dao/notifications_dao.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/dao/notifications_dao.py b/app/dao/notifications_dao.py index 802c2a287..e93f59e28 100644 --- a/app/dao/notifications_dao.py +++ b/app/dao/notifications_dao.py @@ -629,6 +629,7 @@ def notifications_not_yet_sent(should_be_sending_after_seconds, notification_typ Notification.status == NotificationStatus.CREATED, ) notifications = db.session.execute(stmt).all() + print(f"WE RETURN THIS FOR NOTIFICATIONS {notifications}") return notifications