This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit ce58706a49d25f85dd11a6a9486668a1712c3985
Author: Alexey Serbin <[email protected]>
AuthorDate: Wed Jul 29 17:44:00 2020 -0700

    [benchmarks] fix misprints
    
    This is a follow-up to 4bee886c2cb092531a7af0f49420471a2203af2b.
    
    Change-Id: Ib8be736b3f7a678cb98655ca1b5b3829877c99ce
    Reviewed-on: http://gerrit.cloudera.org:8080/16258
    Tested-by: Alexey Serbin <[email protected]>
    Reviewed-by: Andrew Wong <[email protected]>
---
 src/kudu/scripts/benchmarks.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/kudu/scripts/benchmarks.sh b/src/kudu/scripts/benchmarks.sh
index e3c3e8f..cb3eeef 100755
--- a/src/kudu/scripts/benchmarks.sh
+++ b/src/kudu/scripts/benchmarks.sh
@@ -330,7 +330,7 @@ run_benchmarks() {
   done
 
   # Run GetTableLocationsBenchmark, with and without cache.
-  for capacity_mb in 0 32 do ;
+  for capacity_mb in 0 32 ; do
     for i in $(seq 1 $NUM_SAMPLES) ; do
       KUDU_ALLOW_SLOW_TESTS=true ./build/latest/bin/table_locations-itest \
         --gtest_filter=TableLocationsTest.GetTableLocationsBenchmark \
@@ -342,7 +342,7 @@ run_benchmarks() {
   done
 
   # Run GetTableLocationsBenchmarkFunctionCall, with and without cache.
-  for capacity_mb in 0 32 do ;
+  for capacity_mb in 0 32 ; do
     for i in $(seq 1 $NUM_SAMPLES) ; do
       KUDU_ALLOW_SLOW_TESTS=true ./build/latest/bin/table_locations-itest \
         
--gtest_filter=TableLocationsTest.GetTableLocationsBenchmarkFunctionCall \

Reply via email to