Skip to content
Snippets Groups Projects
Unverified Commit f1a72646 authored by Travis Ralston's avatar Travis Ralston Committed by GitHub
Browse files

Fix minor typo in exception

parent 7c27c4d5
No related branches found
No related tags found
No related merge requests found
...@@ -196,7 +196,7 @@ class Stream(object): ...@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment