view gpp/accounts/tasks.py @ 571:c2ba9c3395da

For Django 1.4, add a require_debug_false logging filter.
author Brian Neal <bgneal@gmail.com>
date Wed, 02 May 2012 20:43:16 -0500
parents e94570675664
children
line wrap: on
line source
"""
Celery tasks for the accounts application.

"""
from celery.task import task

from accounts.stats import update_user_stats


@task
def user_stats_task(user_id):
    """
    Run the update_user_stats() function on a new task.

    """
    update_user_stats(user_id)