Files
zulip/zerver/management/commands/fill_memcached_caches.py
Sahil Dua 058587da77 Remove extra new lines at the ends of Zulip authoried files.
Fixes #1627.

[tweaked by tabbott to avoid patching third-party modules, for now]
2016-09-26 21:05:24 -07:00

22 lines
678 B
Python

from __future__ import absolute_import
from typing import Any
from optparse import make_option
from django.core.management.base import BaseCommand
from zerver.lib.cache_helpers import fill_remote_cache, cache_fillers
class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option('--cache', dest="cache", default=None),)
help = "Populate the memcached cache of messages."
def handle(self, *args, **options):
# type: (*Any, **str) -> None
if options["cache"] is not None:
fill_remote_cache(options["cache"])
return
for cache in cache_fillers.keys():
fill_remote_cache(cache)