diff options
author | Neil Johnson <neil@fragile.org.uk> | 2018-05-16 09:47:20 +0100 |
---|---|---|
committer | Neil Johnson <neil@fragile.org.uk> | 2018-05-16 09:47:20 +0100 |
commit | a2204cc9cc3f9edb9ae6c1f564b8f315e62d1978 (patch) | |
tree | 7be2c18d616aea174a8866f77e94ecd3d66600ed /synapse/app | |
parent | style and further contraining query (diff) | |
download | synapse-a2204cc9cc3f9edb9ae6c1f564b8f315e62d1978.tar.xz |
remove unused method recurring_user_daily_visit_stats
Diffstat (limited to 'synapse/app')
-rwxr-xr-x | synapse/app/homeserver.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 41ee8b0a69..a4648b84d5 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -478,9 +478,6 @@ def run(hs): def generate_user_daily_visit_stats(): hs.get_datastore().generate_user_daily_visits() - def recurring_user_daily_visit_stats(): - clock.looping_call(generate_user_daily_visit_stats, 60 * 60 * 1000) - # Rather than update on per session basis, batch up the requests. # If you increase the loop period, the accuracy of user_daily_visits # table will decrease |