Skip to content
Snippets Groups Projects
Commit d47d22a9 authored by Albert (AJ) St. Aubin's avatar Albert (AJ) St. Aubin
Browse files

updating the import for entitlement tasks

parent 86eaf2f6
No related merge requests found
......@@ -18,3 +18,4 @@ class EntitlementsConfig(AppConfig):
Connect handlers to signals.
"""
from . import signals # pylint: disable=unused-variable
from .tasks import expire_old_entitlements
......@@ -42,7 +42,7 @@ def expire_old_entitlements(self, start, end, logid='...'):
# This query could be optimized to return a more narrow set, but at a
# complexity cost. See bug LEARNER-3451 about improving it.
entitlements = CourseEntitlement.objects.filter(expired_at__isnull=True, id__gte=start, id__lt=end)
entitlements = CourseEntitlement.objects.filter(expired_at__isnull=True, id__gte=start, id__lte=end)
countdown = 2 ** self.request.retries
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment