Skip to content
Snippets Groups Projects
Commit 61b439c9 authored by Neil Johnson's avatar Neil Johnson
Browse files

Fix msec to sec, again

parent 87770300
Branches
Tags
No related merge requests found
...@@ -275,9 +275,9 @@ class DataStore(RoomMemberStore, RoomStore, ...@@ -275,9 +275,9 @@ class DataStore(RoomMemberStore, RoomStore,
""" """
def _count_r30_users(txn): def _count_r30_users(txn):
thirty_days_in_secs = 86400 * 30 thirty_days_in_secs = 86400 * 30
now = int(self._clock.time_msec()) now = int(self._clock.time())
thirty_days_ago_in_secs = now/1000 - thirty_days_in_secs thirty_days_ago_in_secs = now - thirty_days_in_secs
print str(thirty_days_ago_in_secs)
sql = """ sql = """
SELECT platform, COALESCE(count(*), 0) FROM ( SELECT platform, COALESCE(count(*), 0) FROM (
SELECT SELECT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment