mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge pull request #3860 from matrix-org/travis/typo-1
Fix minor typo in exception
This commit is contained in:
commit
ad9198cc34
1
changelog.d/3860.misc
Normal file
1
changelog.d/3860.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix typo in replication stream exception.
|
@ -196,7 +196,7 @@ class Stream(object):
|
|||||||
)
|
)
|
||||||
|
|
||||||
if len(rows) >= MAX_EVENTS_BEHIND:
|
if len(rows) >= MAX_EVENTS_BEHIND:
|
||||||
raise Exception("stream %s has fallen behined" % (self.NAME))
|
raise Exception("stream %s has fallen behind" % (self.NAME))
|
||||||
else:
|
else:
|
||||||
rows = yield self.update_function(
|
rows = yield self.update_function(
|
||||||
from_token, current_token,
|
from_token, current_token,
|
||||||
|
Loading…
Reference in New Issue
Block a user