mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-04 03:51:01 -05:00
actually close conn
This commit is contained in:
parent
cefac79c10
commit
fef7e58ac6
@ -283,10 +283,14 @@ class DataStore(RoomMemberStore, RoomStore,
|
||||
GROUP BY user_id
|
||||
) u
|
||||
"""
|
||||
txn = self.db_conn.cursor()
|
||||
txn.execute(sql, (thirty_days_ago,))
|
||||
count, = txn.fetchone()
|
||||
return count
|
||||
try:
|
||||
txn = self.db_conn.cursor()
|
||||
txn.execute(sql, (thirty_days_ago,))
|
||||
count, = txn.fetchone()
|
||||
return count
|
||||
finally:
|
||||
txn.close()
|
||||
|
||||
|
||||
|
||||
def count_r30_users(self):
|
||||
|
Loading…
Reference in New Issue
Block a user