Commit 88c4b68e authored by Greg Williams's avatar Greg Williams
Browse files

Updated version info to reflect beta 0.9.0 release until validation completed....

Updated version info to reflect beta 0.9.0 release until validation completed. Fixed some documentation errors
parent 5441ab44
Loading
Loading
Loading
Loading
+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.9.0"
PROJECT_NUMBER           = "v0.9.0-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.9.0
0.9.0-beta
+6 −4
Original line number Diff line number Diff line
@@ -200,8 +200,8 @@ KineticStatus KineticClient_GetKeyRange(KineticSession const * const session,
                                        KineticCompletionClosure* closure);

/**
 * @brief Executes a GETLOG command to retrieve a set of keys in the range
 * specified range from the Kinetic Device
 * @brief Executes a GETLOG command to retrieve specific configuration and/or
 * operational data from the Kinetic Device.
 *
 * @param session       The connected KineticSession to use for the operation
 * @param type          KineticLogDataType specifying data type to retrieve.
@@ -221,9 +221,11 @@ KineticStatus KineticClient_GetLog(KineticSession const * const session,
                                   KineticDeviceInfo_Type type,
                                   KineticDeviceInfo** info,
                                   KineticCompletionClosure* closure);

/**
 * @brief Executes a PEER2PEERPUSH command to retrieve a set of keys in the range
 * specified range from the Kinetic Device
 * @brief Executes a PEER2PEERPUSH operation allows a client to instruct a Kinetic
 * Device to copy a set of keys (and associated value and metadata) to another
 * Kinetic Device.
 *
 * @param session       The connected KineticSession to use for the operation
 * @param p2pOp         KineticP2P_Operation pointer. This pointer needs to remain
+0 −2
Original line number Diff line number Diff line
@@ -81,7 +81,6 @@ static void* kinetic_put(void* kinetic_arg);

void setUp(void)
{
    sleep(1);
    KineticClient_Init("stdout", 0);
}

@@ -152,7 +151,6 @@ void test_kinetic_client_should_be_able_to_store_an_arbitrarily_large_binary_obj
                .value = valBuf,
            };
        }
        sleep(1); // Give a generous chunk of time for session to be initialized by the target device

        // Write all of the copies simultaneously (overlapped)
        for (int i = 0; i < NUM_COPIES; i++) {