2016-10-17 18:11:16 +02:00
|
|
|
|
|
|
|
import logging
|
2017-11-16 00:50:28 +01:00
|
|
|
from typing import Any, Dict
|
2016-10-17 18:11:16 +02:00
|
|
|
|
2017-11-16 00:50:28 +01:00
|
|
|
from django.apps import AppConfig
|
|
|
|
from django.conf import settings
|
|
|
|
from django.core.cache import cache
|
|
|
|
from django.db.models.signals import post_migrate
|
2017-01-30 23:19:38 +01:00
|
|
|
|
2017-11-27 07:33:05 +01:00
|
|
|
def flush_cache(sender: AppConfig, **kwargs: Any) -> None:
|
2016-10-17 18:11:16 +02:00
|
|
|
logging.info("Clearing memcached cache after migrations")
|
|
|
|
cache.clear()
|
|
|
|
|
|
|
|
|
|
|
|
class ZerverConfig(AppConfig):
|
|
|
|
name = "zerver" # type: str
|
|
|
|
|
2017-11-27 07:33:05 +01:00
|
|
|
def ready(self) -> None:
|
2017-01-30 23:19:38 +01:00
|
|
|
import zerver.signals
|
|
|
|
|
2016-10-17 18:11:16 +02:00
|
|
|
if settings.POST_MIGRATION_CACHE_FLUSHING:
|
|
|
|
post_migrate.connect(flush_cache, sender=self)
|