mirror of https://github.com/zulip/zulip.git
queue: Remove missedmessage_email_senders.
This commit is contained in:
parent
a583da67b3
commit
4c5a8e6f0c
|
@ -77,7 +77,6 @@ class zulip::base {
|
|||
'embedded_bots',
|
||||
'error_reports',
|
||||
'invites',
|
||||
'missedmessage_email_senders',
|
||||
'email_senders',
|
||||
'missedmessage_emails',
|
||||
'missedmessage_mobile_notifications',
|
||||
|
|
|
@ -483,15 +483,6 @@ define service {
|
|||
contact_groups admins
|
||||
}
|
||||
|
||||
define service {
|
||||
use generic-service
|
||||
service_description Check missedmessage_email_senders queue processor
|
||||
check_command check_remote_arg_string!manage.py process_queue --queue_name=missedmessage_email_senders!1:1!1:1
|
||||
max_check_attempts 3
|
||||
hostgroup_name frontends
|
||||
contact_groups admins
|
||||
}
|
||||
|
||||
define service {
|
||||
use generic-service
|
||||
service_description Check email_senders queue processor
|
||||
|
|
|
@ -55,7 +55,6 @@ queues = {
|
|||
'error_reports',
|
||||
'invites',
|
||||
'missedmessage_emails',
|
||||
'missedmessage_email_senders',
|
||||
'email_senders',
|
||||
'missedmessage_mobile_notifications',
|
||||
'outgoing_webhooks',
|
||||
|
|
|
@ -14,7 +14,7 @@ sanity_check.check_venv(__file__)
|
|||
|
||||
# TODO: Convert this to use scripts/lib/queue_workers.py
|
||||
TOOLS_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
successful_worker_launch = '[process_queue] 18 queue worker threads were launched\n'
|
||||
successful_worker_launch = '[process_queue] 17 queue worker threads were launched\n'
|
||||
|
||||
def check_worker_launch(run_dev: "subprocess.Popen[str]") -> bool:
|
||||
failed = False
|
||||
|
|
|
@ -397,19 +397,6 @@ class EmailSendingWorker(QueueProcessingWorker):
|
|||
handle_send_email_format_changes(copied_event)
|
||||
send_email_from_dict(copied_event)
|
||||
|
||||
@assign_queue('missedmessage_email_senders')
|
||||
class MissedMessageSendingWorker(EmailSendingWorker): # nocoverage
|
||||
"""
|
||||
Note: Class decorators are not inherited.
|
||||
|
||||
The `missedmessage_email_senders` queue was used up through 1.7.1, so we
|
||||
keep consuming from it in case we've just upgraded from an old version.
|
||||
After the 1.8 release, we can delete it and tell admins to upgrade to 1.8
|
||||
first.
|
||||
"""
|
||||
# TODO: zulip-1.8: Delete code related to missedmessage_email_senders queue.
|
||||
pass
|
||||
|
||||
@assign_queue('missedmessage_mobile_notifications')
|
||||
class PushNotificationsWorker(QueueProcessingWorker): # nocoverage
|
||||
def start(self) -> None:
|
||||
|
|
Loading…
Reference in New Issue