summary refs log tree commit diff
path: root/synapse/app/phone_stats_home.py
diff options
context:
space:
mode:
authorreivilibre <oliverw@matrix.org>2023-05-19 16:13:44 +0000
committerGitHub <noreply@github.com>2023-05-19 11:13:44 -0500
commit736199b7638175c439fff10a1f8a2d7da96838e5 (patch)
treef0196bcd5a283c918ce11b623f10a6ed6b7eb7b8 /synapse/app/phone_stats_home.py
parentRename blacklist/whitelist internally. (#15620) (diff)
downloadsynapse-736199b7638175c439fff10a1f8a2d7da96838e5.tar.xz
Remove old R30 because R30v2 supercedes it (#10428)
R30v2 has been out since 2021-07-19 (https://github.com/matrix-org/synapse/pull/10332)
and we started collecting stats on 2021-08-16. Since it's been over a year now
(almost 2 years), this is enough grace period for us to now rip it out.
Diffstat (limited to '')
-rw-r--r--synapse/app/phone_stats_home.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/app/phone_stats_home.py b/synapse/app/phone_stats_home.py
index 897dd3edac..09988670da 100644
--- a/synapse/app/phone_stats_home.py
+++ b/synapse/app/phone_stats_home.py
@@ -127,10 +127,6 @@ async def phone_stats_home(
     daily_sent_messages = await store.count_daily_sent_messages()
     stats["daily_sent_messages"] = daily_sent_messages
 
-    r30_results = await store.count_r30_users()
-    for name, count in r30_results.items():
-        stats["r30_users_" + name] = count
-
     r30v2_results = await store.count_r30v2_users()
     for name, count in r30v2_results.items():
         stats["r30v2_users_" + name] = count