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

Commit

Permalink
ensure can report mau stats when hs.config.mau_stats_only is set (#4305)
Browse files Browse the repository at this point in the history
* ensure can report mau stats when hs.config.mau_stats_only is set
  • Loading branch information
neilisfragile authored Dec 18, 2018
1 parent d2f7c4e commit 7e22cd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit 7e22cd9

Please sign in to comment.