mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 09:27:43 +00:00
Before we were removing items individually from the queue. We now directly use RabbitMQ's queue purging mechanism. (imported from commit 62ab52c724c5a221b4c81a967154a4046a579f84)
20 lines
626 B
Python
20 lines
626 B
Python
from __future__ import absolute_import
|
|
|
|
from django.core.management.base import BaseCommand
|
|
from django.core.management import CommandError
|
|
from zerver.lib.queue import SimpleQueueClient
|
|
import logging
|
|
|
|
class Command(BaseCommand):
|
|
args = "<queue name>"
|
|
help = "Discards all messages from the given queue"
|
|
def handle(self, *args, **options):
|
|
if len(args) != 1:
|
|
raise CommandError("Wrong number of arguments")
|
|
|
|
queue_name = args[0]
|
|
queue = SimpleQueueClient()
|
|
queue.ensure_queue(queue_name, lambda: None)
|
|
queue.channel.queue_purge(queue_name)
|
|
print "Done"
|