]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
common: obj_bencher.cc add missing ":" 8985/head
authorBrad Hubbard <bhubbard@redhat.com>
Sun, 8 May 2016 04:04:25 +0000 (14:04 +1000)
committerBrad Hubbard <bhubbard@redhat.com>
Sun, 8 May 2016 04:04:25 +0000 (14:04 +1000)
"Average IOPS" field in obj_bencher.cc is the only field missing a ":".
Make it consistent with other output fields

Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
src/common/obj_bencher.cc

index 6cb1e1e20bad7ee90348a43789bf892582e3d4e5..0971ec9c0c96d1693f7f7f77fb12db0a875e7c32 100644 (file)
@@ -813,7 +813,7 @@ int ObjBencher::seq_read_bench(int seconds_to_run, int num_objects, int concurre
        << "Read size:            " << data.op_size << std::endl
        << "Object size:          " << data.object_size << std::endl
        << "Bandwidth (MB/sec):   " << setprecision(6) << bandwidth << std::endl
-       << "Average IOPS          " << (int)(data.finished/runtime) << std::endl
+       << "Average IOPS:         " << (int)(data.finished/runtime) << std::endl
        << "Stddev IOPS:          " << vec_stddev(data.history.iops) << std::endl
        << "Max IOPS:             " << data.idata.max_iops << std::endl
        << "Min IOPS:             " << data.idata.min_iops << std::endl