diff options
author | Neil Johnson <neil@matrix.org> | 2018-12-18 14:36:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-18 14:36:11 +0000 |
commit | 7e22cd90f53ce55af2f46b23293e0dcc869c2976 (patch) | |
tree | e3b4253a02ba1414fc0b8fd25385bfde353b2162 /synapse/app | |
parent | create support user (#4141) (diff) | |
download | synapse-7e22cd90f53ce55af2f46b23293e0dcc869c2976.tar.xz |
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
Diffstat (limited to 'synapse/app')
-rwxr-xr-x | synapse/app/homeserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 023e32fed2..f2064f9d0c 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -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 |