Skip to content
Snippets Groups Projects
Unverified Commit 4c92776c authored by Sandro Lutz's avatar Sandro Lutz
Browse files

Fix typo

parent b8696c57
No related branches found
No related tags found
No related merge requests found
Pipeline #70330 passed
......@@ -11,8 +11,8 @@ from ..jobs import JobQueue
def add_record_reminder(record):
with app_context():
initial_delay = current_app.config.get('RECORD_REMINDER_INITIAL_DELAY', timedetla(hours=4))
interval = current_app.config.get('RECORD_REMINDER_INTERVAL', timedetla(hours=2))
initial_delay = current_app.config.get('RECORD_REMINDER_INITIAL_DELAY', timedelta(hours=4))
interval = current_app.config.get('RECORD_REMINDER_INTERVAL', timedelta(hours=2))
JobQueue.add_job_repeating(
modelname='record',
......
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