Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Used shared_task decorator for better compatibility #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions django_cached_field/tasks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from celery import task
from celery import shared_task
from celery.utils.log import get_task_logger
from django.db.models import get_model
import re
Expand All @@ -7,8 +7,7 @@
logger = get_task_logger(__name__)
recalc_needed_re = re.compile("(.*)_recalculation_needed$")


@task
@shared_task
def offload_cache_recalculation(app, model, obj_id, **kwargs):
model = get_model(app,model)
try:
Expand Down