Actually use MAX_STREAM_SIZE constant.

paul/schema_breaking_changes
Erik Johnston 2014-08-15 16:04:54 +01:00
parent 8d1f763209
commit 86be66c34e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class StreamStore(SQLBaseStore):
if limit:
limit = max(limit, MAX_STREAM_SIZE)
else:
limit = 1000
limit = MAX_STREAM_SIZE
# From and to keys should be integers from ordering.
from_key = int(from_key)