Commit dd878969 authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Fixed Flush operation build paramaters (Merge #5)

parent 1f728a06
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -6,9 +6,10 @@ This section will document changes to the library since the last release
- Added getVersion and getVersionAsync to the library.

## Bug Fixes
- Fixed flush operation build parameters (Merge #5, contributed by @rpcope1).
- AsyncClient returns NotConnected exception when an operation is attempted on a client before calling connect().
- Lowered default number of keys asked on ranges to 200 (ASKOVAD-287)
- Fixed typo on baset test case (Merge #2, contributed by @zaitcev)
- Lowered default number of keys asked on ranges to 200 (ASKOVAD-287).
- Fixed typo on baset test case (Merge #2, contributed by @zaitcev).

Changes from 0.6.0.2 to 0.7.0
=============================
@@ -17,10 +18,10 @@ Changes from 0.6.0.2 to 0.7.0
Kinetic Protocol version updated to 2.0.3

## New features
- Added Flush command (Requires protocol 2.0.3)
- Added Limits section on GetLog (Requires protocol 2.0.3)
- Added protocol_version field on kinetic module
- Added version field on kinetic module
- Added Flush command (Requires protocol 2.0.3).
- Added Limits section on GetLog (Requires protocol 2.0.3).
- Added protocol_version field on kinetic module.
- Added version field on kinetic module.

## Breaking changes
- Renamed Synchronization.ASYNC to Synchronization.WRITETHROUGH
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ class PushKeys(object):
class Flush(object):

    @staticmethod
    def build(types):
    def build():
        m = messages.Message()
        m.command.header.messageType = messages.Message.FLUSHALLDATA