0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-19 19:18:19 +02:00

only need to loop if mau limiting is enabled

This commit is contained in:
Neil Johnson 2018-08-01 10:20:42 +01:00
parent 5bb39b1e0c
commit c507fa15ce

View file

@ -531,7 +531,8 @@ def run(hs):
limit_usage_by_mau_gauge.set(float(hs.config.limit_usage_by_mau))
generate_monthly_active_users()
clock.looping_call(generate_monthly_active_users, 5 * 60 * 1000)
if hs.config.limit_usage_by_mau:
clock.looping_call(generate_monthly_active_users, 5 * 60 * 1000)
if hs.config.report_stats:
logger.info("Scheduling stats reporting for 3 hour intervals")