diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-08-23 01:00:01 +0200 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-08-23 01:00:01 +0200 |
commit | fa5dc9fa0b66d74f86843d6fbaab0a12da50901d (patch) | |
tree | 431669733f437e45e81a18d08d7e421d01a12358 /synapse | |
parent | remove debugging (diff) | |
download | synapse-github/matthew/free_mau.tar.xz |
remove needless trial param github/matthew/free_mau matthew/free_mau
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/monthly_active_users.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/monthly_active_users.py b/synapse/storage/monthly_active_users.py index 6a9a945af2..b8da8fbdc2 100644 --- a/synapse/storage/monthly_active_users.py +++ b/synapse/storage/monthly_active_users.py @@ -273,4 +273,4 @@ class MonthlyActiveUsersStore(SQLBaseStore): if count < self.hs.config.max_mau_value: yield self.upsert_monthly_active_user(user_id, create_as_trial) elif now - last_seen_timestamp > LAST_SEEN_GRANULARITY: - yield self.upsert_monthly_active_user(user_id, create_as_trial) + yield self.upsert_monthly_active_user(user_id) |