forked from MirrorHub/synapse
Comment
This commit is contained in:
parent
b843631d71
commit
653d90c1a5
1 changed files with 6 additions and 0 deletions
|
@ -443,6 +443,12 @@ class DeviceListEduUpdater(object):
|
||||||
" we're not retrying the remote",
|
" we're not retrying the remote",
|
||||||
user_id,
|
user_id,
|
||||||
)
|
)
|
||||||
|
# We abort on exceptions rather than accepting the update
|
||||||
|
# as otherwise synapse will 'forget' that its device list
|
||||||
|
# is out of date. If we bail then we will retry the resync
|
||||||
|
# next time we get a device list update for this user_id.
|
||||||
|
# This makes it more likely that the device lists will
|
||||||
|
# eventually become consistent.
|
||||||
return
|
return
|
||||||
except Exception:
|
except Exception:
|
||||||
# TODO: Remember that we are now out of sync and try again
|
# TODO: Remember that we are now out of sync and try again
|
||||||
|
|
Loading…
Reference in a new issue