From b622b151d43d6669ab8b1bf256eb27571e587a66 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 24 May 2026 22:58:41 -0400 Subject: [PATCH] [settings] Never run db dumps at midnight --- vrobbler/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/settings.py b/vrobbler/settings.py index abbac00..bd13b28 100644 --- a/vrobbler/settings.py +++ b/vrobbler/settings.py @@ -136,7 +136,7 @@ CELERY_BEAT_SCHEDULE = { # ── Crontab replacements ───────────────────────────────────────────── "database-backup": { "task": "scrobbles.tasks.backup_database", - "schedule": crontab(hour=0, minute=0), + "schedule": crontab(hour=0, minute=30), }, "import-from-lastfm": { "task": "scrobbles.tasks.import_from_lastfm_all_users",