Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
f346048a
Commit
f346048a
authored
7 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Handle exceptions thrown in handling remote device list updates
parent
60833c89
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/device.py
+16
-1
16 additions, 1 deletion
synapse/handlers/device.py
with
16 additions
and
1 deletion
synapse/handlers/device.py
+
16
−
1
View file @
f346048a
...
...
@@ -17,6 +17,7 @@ from synapse.api.constants import EventTypes
from
synapse.util
import
stringutils
from
synapse.util.async
import
Linearizer
from
synapse.util.caches.expiringcache
import
ExpiringCache
from
synapse.util.retryutils
import
NotRetryingDestination
from
synapse.util.metrics
import
measure_func
from
synapse.types
import
get_domain_from_id
,
RoomStreamToken
from
twisted.internet
import
defer
...
...
@@ -430,7 +431,21 @@ class DeviceListEduUpdater(object):
if
resync
:
# Fetch all devices for the user.
origin
=
get_domain_from_id
(
user_id
)
result
=
yield
self
.
federation
.
query_user_devices
(
origin
,
user_id
)
try
:
result
=
yield
self
.
federation
.
query_user_devices
(
origin
,
user_id
)
except
NotRetryingDestination
:
logger
.
warn
(
"
Failed to handle device list update for %s,
"
"
we
'
re not retrying the remote
"
,
user_id
,
)
return
except
Exception
:
logger
.
exception
(
"
Failed to handle device list update for %s
"
,
user_id
)
return
stream_id
=
result
[
"
stream_id
"
]
devices
=
result
[
"
devices
"
]
yield
self
.
store
.
update_remote_device_list_cache
(
...
...
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