[openstreetmap/openstreetmap-website] Changeset comment notifications are being queued in the default job queue (Issue #6924)
Tom Hughes
notifications at github.com
Sat Mar 21 17:06:21 UTC 2026
tomhughes created an issue (openstreetmap/openstreetmap-website#6924)
The new notification system from #6837 is queueing jobs in the `default` queue which was not being processed in production meaning that no notifications were delivered.
The old system would queue jobs of class `ActionMailer::MailDeliveryJob` in the `mailers` queue to send email notifications.
The new system seems to queue jobs of class `Noticed::EventJob` in the `default` queue, then when that is processed a new job of class `Noticed::DeliveryMethods::Email` is added in the same queue to actually send the email.
I've started queue runners for the `default` queue manually for now which has cleared the backlog but we probably want those jobs to go in a new `notifiers` queue or something - not sure if we can separate out the mail jobs to the `mailers` queue as well or if we'll have to have it all in one.
--
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/issues/6924
You are receiving this because you are subscribed to this thread.
Message ID: <openstreetmap/openstreetmap-website/issues/6924 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/rails-dev/attachments/20260321/d80148cb/attachment.htm>
More information about the rails-dev
mailing list