Merge pull request #3860 from matrix-org/travis/typo-1

Fix minor typo in exception
pull/1755/merge
Travis Ralston 2018-09-13 16:32:48 -06:00 committato da GitHub
commit ad9198cc34
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 4AEE18F83AFDEB23
2 ha cambiato i file con 2 aggiunte e 1 eliminazioni

1
changelog.d/3860.misc Normal file
Vedi File

@ -0,0 +1 @@
Fix typo in replication stream exception.

Vedi File

@ -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,