Celery provides a more robust set of queueing options for both tasks and worker processes. Updates include: - infrastructure necessary to run Celery, including celery entrypoint - backgrounded functions are now imported directly from atst.jobs - update tests as-needed - update kubernetes worker pod command
18 lines
535 B
Python
18 lines
535 B
Python
from sqlalchemy import select
|
|
|
|
from atst.jobs import send_notification_mail
|
|
from atst.database import db
|
|
from atst.models import NotificationRecipient
|
|
|
|
|
|
class NotificationSender(object):
|
|
EMAIL_SUBJECT = "ATST notification"
|
|
|
|
def send(self, body, type_=None):
|
|
recipients = self._get_recipients(type_)
|
|
send_notification_mail.delay(recipients, self.EMAIL_SUBJECT, body)
|
|
|
|
def _get_recipients(self, type_):
|
|
query = select([NotificationRecipient.email])
|
|
return db.session.execute(query).fetchone()
|