Commit 15a9bf11 authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Merge pull request #1 from rpcope1/develop

Update operations.py (ASKOVAD-287)
parents 73829802 33eb603c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@ class GetPrevious(object):
class GetKeyRange(object):

    @staticmethod
    def build(startKey, endKey, startKeyInclusive=True, endKeyInclusive=True, maxReturned=256):
    def build(startKey, endKey, startKeyInclusive=True, endKeyInclusive=True, maxReturned=200):
        if len(startKey) > common.MAX_KEY_SIZE: raise common.KineticClientException("Start key exceeds maximum size of {0} bytes.".format(common.MAX_KEY_SIZE))
        if len(endKey) > common.MAX_KEY_SIZE: raise common.KineticClientException("End key exceeds maximum size of {0} bytes.".format(common.MAX_KEY_SIZE))