mirror of https://github.com/zulip/zulip.git
26 lines
611 B
Python
26 lines
611 B
Python
|
|
from django.apps import AppConfig
|
|
from django.db.models.signals import post_migrate
|
|
from django.core.cache import cache
|
|
from django.conf import settings
|
|
from typing import Any, Dict
|
|
|
|
import logging
|
|
|
|
|
|
def flush_cache(sender, **kwargs):
|
|
# type: (AppConfig, **Any) -> None
|
|
logging.info("Clearing memcached cache after migrations")
|
|
cache.clear()
|
|
|
|
|
|
class ZerverConfig(AppConfig):
|
|
name = "zerver" # type: str
|
|
|
|
def ready(self):
|
|
# type: () -> None
|
|
import zerver.signals
|
|
|
|
if settings.POST_MIGRATION_CACHE_FLUSHING:
|
|
post_migrate.connect(flush_cache, sender=self)
|