You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/authentication/tasks.py

15 lines
453 B

6 years ago
# -*- coding: utf-8 -*-
#
from celery import shared_task
from ops.celery.decorator import register_as_period_task
from django.contrib.sessions.models import Session
from django.utils import timezone
from django.utils.translation import gettext_lazy as _
6 years ago
@register_as_period_task(interval=3600 * 24)
@shared_task(verbose_name=_('Clean expired session'))
def clean_django_sessions():
Session.objects.filter(expire_date__lt=timezone.now()).delete()