mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Spelling
This commit is contained in:
parent
36be39b8b3
commit
9834367eea
@ -336,7 +336,7 @@ class DeviceListEduUpdater(object):
|
|||||||
self.clock = hs.get_clock()
|
self.clock = hs.get_clock()
|
||||||
self.device_handler = device_handler
|
self.device_handler = device_handler
|
||||||
|
|
||||||
self._remote_edue_linearizer = Linearizer(name="remote_device_list")
|
self._remote_edu_linearizer = Linearizer(name="remote_device_list")
|
||||||
|
|
||||||
# user_id -> list of updates waiting to be handled.
|
# user_id -> list of updates waiting to be handled.
|
||||||
self._pending_updates = {}
|
self._pending_updates = {}
|
||||||
@ -380,7 +380,7 @@ class DeviceListEduUpdater(object):
|
|||||||
def _handle_device_updates(self, user_id):
|
def _handle_device_updates(self, user_id):
|
||||||
"Actually handle pending updates."
|
"Actually handle pending updates."
|
||||||
|
|
||||||
with (yield self._remote_edue_linearizer.queue(user_id)):
|
with (yield self._remote_edu_linearizer.queue(user_id)):
|
||||||
pending_updates = self._pending_updates.pop(user_id, [])
|
pending_updates = self._pending_updates.pop(user_id, [])
|
||||||
if not pending_updates:
|
if not pending_updates:
|
||||||
# This can happen since we batch updates
|
# This can happen since we batch updates
|
||||||
|
Loading…
Reference in New Issue
Block a user