Commit 45d13e2a authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Release v0.8.2

parents 22e21166 f8b7dac8
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -14,6 +14,9 @@ This section will document changes to the library since the last release
- Pin size added to limits
- SHA1 calculation used as default on puts when algorithm and tag not specified.

## Minor changes
- The client will use WRITEBACK as default when synchronization mode not specified on PUT and DELETE.

Changes from 0.7.3 to 0.8.0
===========================

+1 −1
Original line number Diff line number Diff line
Introduction
============
The [kinetic-protocol](https://github.com/Seagate/kinetic-protocol) python client.
Requires Python 2.7.3 or higher. Python 3.x is not supported.
Requires Python 2.7.3 or higher. Python 3.x is not supported. If you want to connect through SSL on Mac OS X, you will need to have Python 2.7.9.

Installing latest stable release
================================
Compare 6d2dc127 to 6b5c98a2
Original line number Diff line number Diff line
Subproject commit 6d2dc127bbfc88607702768559693177d4ca7db2
Subproject commit 6b5c98a2298353713b8f16679f8c9dc7b2e543b7
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ class BaseAsync(Client):
                    except Exception as e:
                        self._raise(e)
                else:
                    LOG.warn('Unsolicited status %s received but nobody listening.' % resp.status.code)
                    LOG.warn('Unsolicited status %s received but nobody listening. %s' % (resp.status.code, resp.status.statusMessage))
            else:
                seq = resp.header.ackSequence
                if LOG.isEnabledFor(logging.DEBUG):
+1 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ class BaseClient(object):
        # read proto message
        raw_proto = self.fast_read(proto_ln)

        value = None
        value = ''
        if value_ln > 0:
            if self.defer_read:
                # let user handle the read from socket
Loading