Skip to content

Commit 88df393

Browse files
authored
Update celery.py
1 parent 552c51e commit 88df393

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

config/celery.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ def setup_periodic_tasks(sender, **kwargs):
120120
)
121121

122122
# Sync per-post page views from Plausible. Executes daily at 6:00 AM.
123+
# Manually adjusted to /*15 directly in the QA environment.
123124
sender.add_periodic_task(
124-
crontab(hour=6, minute=0),
125+
crontab(minute="*/15"),
125126
app.signature("news.tasks.sync_post_views_from_plausible"),
126127
)

0 commit comments

Comments
 (0)