worker: Split into separate files.

This makes each worker faster to start up.
This commit is contained in:
Alex Vandiver
2024-04-16 18:49:37 +00:00
committed by Tim Abbott
parent db86027cbd
commit 5654d051f7
32 changed files with 1516 additions and 1380 deletions

View File

@@ -6,7 +6,7 @@ from django.core.management.base import BaseCommand, CommandParser
from typing_extensions import override
from zerver.lib.queue import SimpleQueueClient, queue_json_publish
from zerver.worker.queue_processors import BatchNoopWorker, NoopWorker
from zerver.worker.test import BatchNoopWorker, NoopWorker
class Command(BaseCommand):