diff options
author | Neil Johnson <neil@fragile.org.uk> | 2018-04-09 18:44:20 +0100 |
---|---|---|
committer | Neil Johnson <neil@fragile.org.uk> | 2018-04-09 18:44:20 +0100 |
commit | 41e06118954234878311cea3e7a55a88e6eec784 (patch) | |
tree | 8c4738e30e71d98e8fd8d82756f3256c0a43c134 | |
parent | Fix msec to sec, again (diff) | |
download | synapse-41e06118954234878311cea3e7a55a88e6eec784.tar.xz |
remove errant print v0.27.3-rc2
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 417b9aa2a8..eacd49d6a5 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -277,7 +277,7 @@ class DataStore(RoomMemberStore, RoomStore, thirty_days_in_secs = 86400 * 30 now = int(self._clock.time()) thirty_days_ago_in_secs = now - thirty_days_in_secs - print str(thirty_days_ago_in_secs) + sql = """ SELECT platform, COALESCE(count(*), 0) FROM ( SELECT |