Commit fa04fa93 authored by Job Vranish's avatar Job Vranish
Browse files

Merge branch 'develop' of github.com:Seagate/kinetic-c into feature/write_mutex

parents fd4af994 4abd54b9
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -16,6 +16,12 @@ v0.7.0

v0.8.0
------
* Updated to Kinetic Protocol v3.0.5 (NOT compatible with v2.x simulator/devices or earlier)
* Added asynchronous/non-blocking execution option to all operations (GET/PUT/DELETE/GETKEYRANGE).
    * A given operation is carried out in asynchronous mode if a closure callback with optional data is supplied.
* ByteArray and ByteBuffer types are now supplied directly in the byte_array.h public interface file.

v0.8.1
------
* Added GETLOG operation.
* Added thread-safety to allow multiple client threads within the same session. **(IN PROGRESS)**
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ PROJECT_NAME = kinetic-c
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER           = "v0.8.0"
PROJECT_NUMBER           = "v0.8.1-beta"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
+1 −1
Original line number Diff line number Diff line
0.8.0
0.8.1-beta
+4 −2
Original line number Diff line number Diff line
@@ -914,10 +914,12 @@ void KineticLogger_LogProtobuf(int log_level, const KineticProto_Message* msg)
                        // * protobuf_c_boolean has_messages;
                        // * ProtobufCBinaryData messages;
                        if (cmd->body->getLog->has_messages) {
                            BYTES_TO_CSTRING(tmpBuf,
                            uint8_t* buf = malloc(cmd->body->getLog->messages.len * 4);
                            BYTES_TO_CSTRING(buf,
                                cmd->body->getLog->messages,
                                0, cmd->body->getLog->messages.len);
                            KineticLogger_LogPrintf(log_level, "%smessages: '%s'", _indent, tmpBuf);
                            KineticLogger_LogPrintf(log_level, "%smessages: '%s'", _indent, buf);
                            free(buf);
                        }
                            
                        // * KineticProto_Command_GetLog_Limits* limits;
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@

#ifndef SYSTEM_TEST_HOST
#define SYSTEM_TEST_HOST "localhost"
// #define SYSTEM_TEST_HOST "10.138.123.65"
#endif

typedef struct _SystemTestFixture {
Loading