diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-02 15:55:29 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-02 15:55:29 +0100 |
commit | 9180061b49907da363f2e3bfa0061f913d7ccf7a (patch) | |
tree | 4534460d1fadcf18e80cd2c495a5c89e56503eeb /synapse/storage | |
parent | fix test, update constructor call (diff) | |
download | synapse-9180061b49907da363f2e3bfa0061f913d7ccf7a.tar.xz |
remove unused count_monthly_users
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/__init__.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 2120f46ed5..23b4a8d76d 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -268,31 +268,6 @@ class DataStore(RoomMemberStore, RoomStore, return self.runInteraction("count_users", _count_users) - def count_monthly_users(self): - """Counts the number of users who used this homeserver in the last 30 days - - This method should be refactored with count_daily_users - the only - reason not to is waiting on definition of mau - - Returns: - Defered[int] - """ - def _count_monthly_users(txn): - thirty_days_ago = int(self._clock.time_msec()) - (1000 * 60 * 60 * 24 * 30) - sql = """ - SELECT COALESCE(count(*), 0) FROM ( - SELECT user_id FROM user_ips - WHERE last_seen > ? - GROUP BY user_id - ) u - """ - - txn.execute(sql, (thirty_days_ago,)) - count, = txn.fetchone() - return count - - return self.runInteraction("count_monthly_users", _count_monthly_users) - def count_r30_users(self): """ Counts the number of 30 day retained users, defined as:- |