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
Container Registry
Model registry
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
Maunium
synapse
Commits
3737329d
Commit
3737329d
authored
10 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Handle the fact the list.remove raises if element doesn't exist
parent
a93fa42b
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/handlers/federation.py
+10
-4
10 additions, 4 deletions
synapse/handlers/federation.py
with
10 additions
and
4 deletions
synapse/handlers/federation.py
+
10
−
4
View file @
3737329d
...
@@ -332,8 +332,11 @@ class FederationHandler(BaseHandler):
...
@@ -332,8 +332,11 @@ class FederationHandler(BaseHandler):
# Try the host we successfully got a response to /make_join/
# Try the host we successfully got a response to /make_join/
# request first.
# request first.
target_hosts
.
remove
(
origin
)
try
:
target_hosts
.
insert
(
0
,
origin
)
target_hosts
.
remove
(
origin
)
target_hosts
.
insert
(
0
,
origin
)
except
ValueError
:
pass
ret
=
yield
self
.
replication_layer
.
send_join
(
ret
=
yield
self
.
replication_layer
.
send_join
(
target_hosts
,
target_hosts
,
...
@@ -521,7 +524,7 @@ class FederationHandler(BaseHandler):
...
@@ -521,7 +524,7 @@ class FederationHandler(BaseHandler):
"
Failed to get destination from event %s
"
,
s
.
event_id
"
Failed to get destination from event %s
"
,
s
.
event_id
)
)
destinations
.
remove
(
origin
)
destinations
.
discard
(
origin
)
logger
.
debug
(
logger
.
debug
(
"
on_send_join_request: Sending event: %s, signatures: %s
"
,
"
on_send_join_request: Sending event: %s, signatures: %s
"
,
...
@@ -1013,7 +1016,10 @@ class FederationHandler(BaseHandler):
...
@@ -1013,7 +1016,10 @@ class FederationHandler(BaseHandler):
for
e
in
missing_remotes
:
for
e
in
missing_remotes
:
for
e_id
,
_
in
e
.
auth_events
:
for
e_id
,
_
in
e
.
auth_events
:
if
e_id
in
missing_remote_ids
:
if
e_id
in
missing_remote_ids
:
base_remote_rejected
.
remove
(
e
)
try
:
base_remote_rejected
.
remove
(
e
)
except
ValueError
:
pass
reason_map
=
{}
reason_map
=
{}
...
...
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