Skip to content

Commit

Permalink
feat(queries): Adjust cache warming schedule (#24514)
Browse files Browse the repository at this point in the history
  • Loading branch information
webjunkie authored Aug 22, 2024
1 parent c802071 commit 8ca6403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/tasks/scheduled.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def setup_periodic_tasks(sender: Celery, **kwargs: Any) -> None:
add_periodic_task_with_expiry(sender, 20, start_poll_query_performance.s(), "20 sec query performance heartbeat")

sender.add_periodic_task(
crontab(hour="*", minute="*/30"),
crontab(hour="*", minute="0"),
schedule_warming_for_teams_task.s(),
name="schedule warming for largest teams",
)
Expand Down

0 comments on commit 8ca6403

Please sign in to comment.