mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
s/get_forward_events/get_successor_events/
This commit is contained in:
parent
fbc047f2a5
commit
8b63fe4c26
@ -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…
Reference in New Issue
Block a user