Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
a46fabf1
Commit
a46fabf1
authored
5 years ago
by
Richard van der Hoff
Browse files
Options
Downloads
Patches
Plain Diff
make FederationClient.send_leave async
parent
8af9f11b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/federation/federation_client.py
+9
-10
9 additions, 10 deletions
synapse/federation/federation_client.py
with
9 additions
and
10 deletions
synapse/federation/federation_client.py
+
9
−
10
View file @
a46fabf1
...
...
@@ -730,7 +730,7 @@ class FederationClient(FederationBase):
)
return
content
def
send_leave
(
self
,
destinations
,
pdu
)
:
async
def
send_leave
(
self
,
destinations
:
Iterable
[
str
],
pdu
:
EventBase
)
->
None
:
"""
Sends a leave event to one of a list of homeservers.
Doing so will cause the remote server to add the event to the graph,
...
...
@@ -739,17 +739,14 @@ class FederationClient(FederationBase):
This is mostly useful to reject received invites.
Args:
destinations
(str)
: Candidate homeservers which are probably
destinations: Candidate homeservers which are probably
participating in the room.
pdu (BaseEvent): event to be sent
Return:
Deferred: resolves to None.
pdu: event to be sent
Fails with a ``SynapseError`` if the chosen remote server
returns a 300/400 code.
Raises:
SynapseError if the chosen remote server
returns a 300/400 code.
Fails with a ``
RuntimeError
``
if no servers were reachable.
RuntimeError if no servers were reachable.
"""
@defer.inlineCallbacks
...
...
@@ -759,7 +756,9 @@ class FederationClient(FederationBase):
logger
.
debug
(
"
Got content: %s
"
,
content
)
return
None
return
self
.
_try_destination_list
(
"
send_leave
"
,
destinations
,
send_request
)
return
await
self
.
_try_destination_list
(
"
send_leave
"
,
destinations
,
send_request
)
@defer.inlineCallbacks
def
_do_send_leave
(
self
,
destination
,
pdu
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment