X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/e01dee1eda68946acf73e43f2c54b3c730514a21..bbc5bd6a7c8280758a2388ebffec26e0afc35d00:/apps/catalogue/tasks.py diff --git a/apps/catalogue/tasks.py b/apps/catalogue/tasks.py index 547f36b4..c84a2912 100644 --- a/apps/catalogue/tasks.py +++ b/apps/catalogue/tasks.py @@ -3,7 +3,7 @@ from django.utils import translation from django.conf import settings -@task +@task(ignore_result=True) def _refresh_by_pk(cls, pk, language=None): prev_language = translation.get_language() language and translation.activate(language) @@ -34,6 +34,6 @@ def publishable_error(book): translation.get_language()).wait() -@task +@task(ignore_result=True) def book_content_updated(book): book.refresh_dc_cache()