Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

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

Merged
merged 3 commits into from
Dec 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/4305.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The metric synapse_admin_mau:current previously did not update when config.mau_stats_only was set to True
2 changes: 1 addition & 1 deletion synapse/app/homeserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def start_generate_monthly_active_users():
)

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

Expand Down