Use txn.fetchall() so we can reuse txn

pull/2083/head
Erik Johnston 2017-03-30 10:30:05 +01:00
parent 6cdca71079
commit 30348c924c
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class EventFederationStore(SQLBaseStore):
txn.execute(sql, (room_id, ))
results = []
for event_id, depth in txn:
for event_id, depth in txn.fetchall():
hashes = self._get_event_reference_hashes_txn(txn, event_id)
prev_hashes = {
k: encode_base64(v) for k, v in hashes.items()