0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-12-14 17:34:00 +01:00

10 mins seems more reasonable that every minute

This commit is contained in:
Neil Johnson 2018-05-01 12:12:22 +01:00
parent fb6015d0a6
commit 5917562b60

View file

@ -488,7 +488,7 @@ def run(hs):
# be quite busy the first few minutes
clock.call_later(5 * 60, phone_stats_home)
clock.looping_call(generate_user_daily_visit_stats, 60 * 1000)
clock.looping_call(generate_user_daily_visit_stats, 10 * 60 * 1000)
clock.call_later(5 * 60, generate_user_daily_visit_stats)
if hs.config.daemonize and hs.config.print_pidfile: