Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Investigate bulk_save_objects for notification inserts #1533

Merged
merged 35 commits into from
Jan 15, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix tests
Kenneth Kehl committed Jan 10, 2025
commit 833146e4242a6ab2c08237b00cfa849a98f888bf
4 changes: 2 additions & 2 deletions tests/app/celery/test_scheduled_tasks.py
Original file line number Diff line number Diff line change
@@ -308,10 +308,10 @@ def test_replay_created_notifications(notify_db_session, sample_service, mocker)

replay_created_notifications()
email_delivery_queue.assert_called_once_with(
[str(old_email.id)], queue="send-email-tasks"
[str(old_email.id)], queue="send-email-tasks", countdown=30
)
sms_delivery_queue.assert_called_once_with(
[str(old_sms.id)], queue="send-sms-tasks"
[str(old_sms.id)], queue="send-sms-tasks", countdown=30
)