perf: 统一后台定时任务的crontab表达式, 对于后台定时执行的任务更加清晰

This commit is contained in:
Jiangjie.Bai
2022-10-10 16:31:45 +08:00
parent cd98ec4cac
commit 145814f1e8
4 changed files with 13 additions and 4 deletions

View File

@@ -15,6 +15,7 @@ from orgs.models import Organization
from .models import User
from users.notifications import UserExpirationReminderMsg
from settings.utils import LDAPServerUtil, LDAPImportUtil
from common.const.crontab import CRONTAB_AT_AM_TEN, CRONTAB_AT_PM_TWO
logger = get_logger(__file__)
@@ -41,7 +42,7 @@ def check_password_expired_periodic():
'check_password_expired_periodic': {
'task': check_password_expired.name,
'interval': None,
'crontab': '0 10 * * *',
'crontab': CRONTAB_AT_AM_TEN,
'enabled': True,
}
}
@@ -72,7 +73,7 @@ def check_user_expired_periodic():
'check_user_expired_periodic': {
'task': check_user_expired.name,
'interval': None,
'crontab': '0 14 * * *',
'crontab': CRONTAB_AT_PM_TWO,
'enabled': True,
}
}