Mercurial > public > sg101
view custom_search/tasks.py @ 733:18e42866b34d
For #56, default to anonymous radio button on donations form.
Also improve the donations admin page with a date hierarchy and other fields
on the list display.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 24 Oct 2013 21:03:03 -0500 |
parents | f0b997651497 |
children | aeafbf3ecebf |
line wrap: on
line source
""" Tasks for our custom search application. """ from django.conf import settings from celery.task import task from queued_search.management.commands.process_search_queue import Command @task def process_search_queue_task(): """ Celery task to run the queued_search application's process_search_queue command. """ if settings.SEARCH_QUEUE_ENABLED: command = Command() command.execute() else: logger = process_search_queue_task.get_logger() logger.warning("Search queue disabled; skipping processing")