0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-07 03:38:54 +02:00

Preemptively jump into a transaction if we ask for get_prev_content

This commit is contained in:
Erik Johnston 2015-05-14 14:17:36 +01:00
parent e1e9f0c5b2
commit 2f7f8e1c2b

View file

@ -883,6 +883,7 @@ class SQLBaseStore(object):
missing_events = [e for e in event_ids if e not in event_map]
def get_missing(txn=None):
missing_events = yield self._fetch_events(
txn,
missing_events,
@ -898,6 +899,15 @@ class SQLBaseStore(object):
if e_id in event_map and event_map[e_id]
])
if missing_events and get_prev_content and not txn:
if get_prev_content and not txn:
# If we want prev_content then lets just jump into a txn.
res = yield self.runInteraction("_get_events", get_missing)
defer.returnValue(res)
defer.returnValue(get_missing())
def _get_events_txn(self, txn, event_ids, check_redacted=True,
get_prev_content=False, allow_rejected=False):
return unwrap_deferred(self._get_events(