Commit 586a913a authored by Job Vranish's avatar Job Vranish
Browse files

reduced number of keys copied in p2p throughput test as the simulator seems to...

reduced number of keys copied in p2p throughput test as the simulator seems to have issues with large numbers
parent 26ad8b6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ void run_p2p_throughput_test(KineticClient * client, size_t num_ops, size_t valu
void test_p2p_throughput(void)
{
    KineticClient * client = KineticClient_Init("stdout", 0);
    run_p2p_throughput_test(client, 300, KINETIC_OBJ_SIZE);
    run_p2p_throughput_test(client, 50, KINETIC_OBJ_SIZE);
    KineticClient_Shutdown(client);   
}