10 lines
239 B
Python
10 lines
239 B
Python
|
"""saml source settings"""
|
||
|
from celery.schedules import crontab
|
||
|
|
||
|
CELERY_BEAT_SCHEDULE = {
|
||
|
"saml_source_cleanup": {
|
||
|
"task": "passbook.sources.saml.tasks.clean_temporary_users",
|
||
|
"schedule": crontab(minute="*/5"),
|
||
|
}
|
||
|
}
|