diff options
author | Travis Ralston <travpc@gmail.com> | 2018-09-13 11:51:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-13 11:51:12 -0600 |
commit | f1a72646636c08e5e0f6dc6f583d0bffebf94c85 (patch) | |
tree | 190e4feb8a0ace99bfe5331dc514e7124fb992ae /synapse | |
parent | merge (#3576) (diff) | |
download | synapse-f1a72646636c08e5e0f6dc6f583d0bffebf94c85.tar.xz |
Fix minor typo in exception
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/replication/tcp/streams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/streams.py b/synapse/replication/tcp/streams.py index 55fe701c5c..c1e626be3f 100644 --- a/synapse/replication/tcp/streams.py +++ b/synapse/replication/tcp/streams.py @@ -196,7 +196,7 @@ class Stream(object): ) 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: rows = yield self.update_function( from_token, current_token, |