bookwyrm/bookwyrm/management/commands/erase_streams.py
2022-02-04 18:36:12 -08:00

28 lines
651 B
Python

""" Delete user streams """
from django.core.management.base import BaseCommand
import redis
from bookwyrm import settings
r = redis.Redis(
host=settings.REDIS_ACTIVITY_HOST,
port=settings.REDIS_ACTIVITY_PORT,
password=settings.REDIS_ACTIVITY_PASSWORD,
db=settings.REDIS_ACTIVITY_DB_INDEX,
)
def erase_streams():
"""throw the whole redis away"""
r.flushall()
class Command(BaseCommand):
"""delete activity streams for all users"""
help = "Delete all the user streams"
# pylint: disable=no-self-use,unused-argument
def handle(self, *args, **options):
"""flush all, baby"""
erase_streams()