-
Notifications
You must be signed in to change notification settings - Fork 18
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
just do 5000 sized bulk sends in test #2424
base: main
Are you sure you want to change the base?
Conversation
# def send_high_priority_sms(self): | ||
# json = {"phone_number": self.phone_number, "template_id": self.high_priority_sms_template} | ||
# self.client.post("/v2/notifications/sms", json=json, headers=self.headers) |
Check notice
Code scanning / CodeQL
Commented-out code Note
# def send_medium_priority_sms(self): | ||
# self.send_bulk_sms(self.medium_priority_sms_template, 199) |
Check notice
Code scanning / CodeQL
Commented-out code Note
# def send_low_priority_sms(self): | ||
# self.send_bulk_sms(self.low_priority_sms_template, 1000) | ||
|
||
# Email Tasks | ||
# # Email Tasks |
Check notice
Code scanning / CodeQL
Commented-out code Note
# def send_high_priority_email(self): | ||
# json = {"email_address": self.email_address, "template_id": self.high_priority_email_template} | ||
# self.client.post("/v2/notifications/email", json=json, headers=self.headers) |
Check notice
Code scanning / CodeQL
Commented-out code Note
# def send_medium_priority_email(self): | ||
# self.send_bulk_email(self.medium_priority_email_template, 199) |
Check notice
Code scanning / CodeQL
Commented-out code Note
# def do_nothing(self): | ||
# pass |
Check notice
Code scanning / CodeQL
Commented-out code Note
Summary | Résumé
Just do a bulk send of 5000 every 30 seconds.
Test related to an incident.
Test instructions | Instructions pour tester la modification
Release Instructions | Instructions pour le déploiement
None.
Reviewer checklist | Liste de vérification du réviseur