mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-03-01 02:21:07 -05:00
Preemptively jump into a transaction if we ask for get_prev_content
This commit is contained in:
parent
e1e9f0c5b2
commit
2f7f8e1c2b
@ -883,20 +883,30 @@ class SQLBaseStore(object):
|
|||||||
|
|
||||||
missing_events = [e for e in event_ids if e not in event_map]
|
missing_events = [e for e in event_ids if e not in event_map]
|
||||||
|
|
||||||
missing_events = yield self._fetch_events(
|
def get_missing(txn=None):
|
||||||
txn,
|
missing_events = yield self._fetch_events(
|
||||||
missing_events,
|
txn,
|
||||||
check_redacted=check_redacted,
|
missing_events,
|
||||||
get_prev_content=get_prev_content,
|
check_redacted=check_redacted,
|
||||||
allow_rejected=allow_rejected,
|
get_prev_content=get_prev_content,
|
||||||
)
|
allow_rejected=allow_rejected,
|
||||||
|
)
|
||||||
|
|
||||||
event_map.update(missing_events)
|
event_map.update(missing_events)
|
||||||
|
|
||||||
|
defer.returnValue([
|
||||||
|
event_map[e_id] for e_id in event_ids
|
||||||
|
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())
|
||||||
|
|
||||||
defer.returnValue([
|
|
||||||
event_map[e_id] for e_id in event_ids
|
|
||||||
if e_id in event_map and event_map[e_id]
|
|
||||||
])
|
|
||||||
|
|
||||||
def _get_events_txn(self, txn, event_ids, check_redacted=True,
|
def _get_events_txn(self, txn, event_ids, check_redacted=True,
|
||||||
get_prev_content=False, allow_rejected=False):
|
get_prev_content=False, allow_rejected=False):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user