We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 552c51e commit 88df393Copy full SHA for 88df393
1 file changed
config/celery.py
@@ -120,7 +120,8 @@ def setup_periodic_tasks(sender, **kwargs):
120
)
121
122
# Sync per-post page views from Plausible. Executes daily at 6:00 AM.
123
+ # Manually adjusted to /*15 directly in the QA environment.
124
sender.add_periodic_task(
- crontab(hour=6, minute=0),
125
+ crontab(minute="*/15"),
126
app.signature("news.tasks.sync_post_views_from_plausible"),
127
0 commit comments