mirror of
https://mau.dev/maunium/synapse.git
synced 2025-03-05 12:30:19 +01:00
s/get_forward_events/get_successor_events/
This commit is contained in:
parent
fbc047f2a5
commit
8b63fe4c26
2 changed files with 3 additions and 3 deletions
|
@ -881,7 +881,7 @@ class FederationHandler(BaseHandler):
|
|||
# join of the server where we are allowed to see the join event but
|
||||
# not anything before it.
|
||||
|
||||
forward_events = yield self.store.get_forward_events(
|
||||
forward_events = yield self.store.get_successor_events(
|
||||
list(extremities),
|
||||
)
|
||||
|
||||
|
|
|
@ -443,7 +443,7 @@ class EventFederationWorkerStore(EventsWorkerStore, SignatureWorkerStore,
|
|||
return event_results
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def get_forward_events(self, event_ids):
|
||||
def get_successor_events(self, event_ids):
|
||||
"""Fetch all events that have the given events as a prev event
|
||||
|
||||
Args:
|
||||
|
@ -457,7 +457,7 @@ class EventFederationWorkerStore(EventsWorkerStore, SignatureWorkerStore,
|
|||
column="prev_event_id",
|
||||
iterable=event_ids,
|
||||
retcols=("event_id",),
|
||||
desc="get_forward_events"
|
||||
desc="get_successor_events"
|
||||
)
|
||||
|
||||
defer.returnValue([
|
||||
|
|
Loading…
Add table
Reference in a new issue