mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:06:07 -04:00
Merge branch 'neilj/mau_tracker' of github.com:matrix-org/synapse into neilj/mau_tracker
This commit is contained in:
commit
4a6725d9d1
2 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,7 @@ class MonthlyActiveUsersStore(SQLBaseStore):
|
|||
def __init__(self, hs):
|
||||
super(MonthlyActiveUsersStore, self).__init__(None, hs)
|
||||
self._clock = hs.get_clock()
|
||||
self.max_mau_value = hs.config.max_mau_value
|
||||
|
||||
def reap_monthly_active_users(self):
|
||||
"""
|
||||
|
@ -19,7 +20,9 @@ class MonthlyActiveUsersStore(SQLBaseStore):
|
|||
thirty_days_ago = (
|
||||
int(self._clock.time_msec()) - (1000 * 60 * 60 * 24 * 30)
|
||||
)
|
||||
|
||||
sql = "DELETE FROM monthly_active_users WHERE timestamp < ?"
|
||||
|
||||
txn.execute(sql, (thirty_days_ago,))
|
||||
|
||||
return self.runInteraction("reap_monthly_active_users", _reap_users)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue