Skip to content
Snippets Groups Projects
Unverified Commit 7e22cd90 authored by Neil Johnson's avatar Neil Johnson Committed by GitHub
Browse files

ensure can report mau stats when hs.config.mau_stats_only is set (#4305)

* ensure can report mau stats when hs.config.mau_stats_only is set
parent d2f7c4e6
No related branches found
No related tags found
No related merge requests found
The metric synapse_admin_mau:current previously did not update when config.mau_stats_only was set to True
......@@ -537,7 +537,7 @@ def run(hs):
)
start_generate_monthly_active_users()
if hs.config.limit_usage_by_mau:
if hs.config.limit_usage_by_mau or hs.config.mau_stats_only:
clock.looping_call(start_generate_monthly_active_users, 5 * 60 * 1000)
# End of monthly active user settings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment