mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Fixup comment
This commit is contained in:
parent
8d452e0ca5
commit
915280f1ed
@ -1021,12 +1021,19 @@ class PresenceEventSource(object):
|
|||||||
if from_key == max_token:
|
if from_key == max_token:
|
||||||
# This is necessary as due to the way stream ID generators work
|
# This is necessary as due to the way stream ID generators work
|
||||||
# we may get updates that have a stream ID greater than the max
|
# we may get updates that have a stream ID greater than the max
|
||||||
# token. This is usually fine, as it just means that we may send
|
# token (e.g. max_token is N but stream generator may return
|
||||||
# down some presence updates multiple times. However, we need to
|
# results for N+2, due to N+1 not having finished being
|
||||||
# be careful that the sync stream actually does make some
|
# persisted yet).
|
||||||
# progress, otherwise clients will end up tight looping calling
|
#
|
||||||
# /sync due to it returning the same token repeatedly. Hence
|
# This is usually fine, as it just means that we may send down
|
||||||
# this guard. C.f. #5503.
|
# some presence updates multiple times. However, we need to be
|
||||||
|
# careful that the sync stream either actually does make some
|
||||||
|
# progress or doesn't return, otherwise clients will end up
|
||||||
|
# tight looping calling /sync due to it immediately returning
|
||||||
|
# the same token repeatedly.
|
||||||
|
#
|
||||||
|
# Hence this guard where we just return nothing so that the sync
|
||||||
|
# doesn't return. C.f. #5503.
|
||||||
defer.returnValue(([], max_token))
|
defer.returnValue(([], max_token))
|
||||||
|
|
||||||
presence = self.get_presence_handler()
|
presence = self.get_presence_handler()
|
||||||
|
Loading…
Reference in New Issue
Block a user