mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:16:07 -04: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
|
@ -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
Add a link
Reference in a new issue