X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2afff01c99c92f6044d2559a651283ddebb823e7..f1cc3d495b3df83b3e745575c2ff3bdf4942b2fe:/src/stats/tasks.py diff --git a/src/stats/tasks.py b/src/stats/tasks.py index 21f2470cc..06e730c60 100644 --- a/src/stats/tasks.py +++ b/src/stats/tasks.py @@ -1,7 +1,7 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # -from celery.task import task +from celery import shared_task from django.conf import settings import logging from urllib.parse import urlsplit @@ -21,6 +21,6 @@ except AttributeError: _host = None -@task(ignore_result=True) +@shared_task(ignore_result=True) def track_request(piwik_args): urlopen("%s%s%s" % (settings.PIWIK_URL, "piwik.php?", piwik_args))