mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 20:43:52 +01:00
actually close conn
This commit is contained in:
parent
cefac79c10
commit
fef7e58ac6
1 changed files with 8 additions and 4 deletions
|
@ -283,10 +283,14 @@ class DataStore(RoomMemberStore, RoomStore,
|
||||||
GROUP BY user_id
|
GROUP BY user_id
|
||||||
) u
|
) u
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
txn = self.db_conn.cursor()
|
txn = self.db_conn.cursor()
|
||||||
txn.execute(sql, (thirty_days_ago,))
|
txn.execute(sql, (thirty_days_ago,))
|
||||||
count, = txn.fetchone()
|
count, = txn.fetchone()
|
||||||
return count
|
return count
|
||||||
|
finally:
|
||||||
|
txn.close()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def count_r30_users(self):
|
def count_r30_users(self):
|
||||||
|
|
Loading…
Reference in a new issue