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
bc3d6b91
Commit
bc3d6b91
authored
5 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Add logging when request fails and clarify we ignore errors.
parent
fde37e4e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/handlers/federation.py
+12
-4
12 additions, 4 deletions
synapse/handlers/federation.py
with
12 additions
and
4 deletions
synapse/handlers/federation.py
+
12
−
4
View file @
bc3d6b91
...
...
@@ -2034,8 +2034,14 @@ class FederationHandler(BaseHandler):
)
except
Exception
:
# We don't really mind if the above fails, so lets not fail
# processing if it does.
logger
.
exception
(
"
Failed to call _update_auth_events_and_context_for_auth
"
)
# processing if it does. However, it really shouldn't fail so
# let's still log as an exception since we'll still want to fix
# any bugs.
logger
.
exception
(
"
Failed to double check auth events for %s with remote.
"
"
Ignoring failure and continuing processing of event.
"
,
event
.
event_id
,
)
try
:
self
.
auth
.
check
(
room_version
,
event
,
auth_events
=
auth_events
)
...
...
@@ -2108,9 +2114,10 @@ class FederationHandler(BaseHandler):
remote_auth_chain
=
yield
self
.
federation_client
.
get_event_auth
(
origin
,
event
.
room_id
,
event
.
event_id
)
except
RequestSendFailed
:
except
RequestSendFailed
as
e
:
# The other side isn't around or doesn't implement the
# endpoint, so lets just bail out.
logger
.
info
(
"
Failed to get event auth from remote: %s
"
,
e
)
return
seen_remotes
=
yield
self
.
store
.
have_seen_events
(
...
...
@@ -2264,9 +2271,10 @@ class FederationHandler(BaseHandler):
event
.
event_id
,
local_auth_chain
,
)
except
RequestSendFailed
:
except
RequestSendFailed
as
e
:
# The other side isn't around or doesn't implement the
# endpoint, so lets just bail out.
logger
.
info
(
"
Failed to query auth from remote: %s
"
,
e
)
return
seen_remotes
=
yield
self
.
store
.
have_seen_events
(
...
...
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