This is an automated email from the ASF dual-hosted git repository. adar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 625a6f33576233f1b0178cb8bb93f7b425eeed24 Author: Yingchun Lai <[email protected]> AuthorDate: Thu Oct 17 11:04:41 2019 +0800 [test] deflake more for memory_gc-itest In DEBUG slow mode, write workload may not complete before ASSERT_EVENTUALLY timeout, we have to write less data. Change-Id: If26004dd87c5dee68c9e1f31f0dd3caccc938ecf Reviewed-on: http://gerrit.cloudera.org:8080/14480 Tested-by: Kudu Jenkins Reviewed-by: Adar Dembo <[email protected]> --- src/kudu/integration-tests/memory_gc-itest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kudu/integration-tests/memory_gc-itest.cc b/src/kudu/integration-tests/memory_gc-itest.cc index eb9c963..8851884 100644 --- a/src/kudu/integration-tests/memory_gc-itest.cc +++ b/src/kudu/integration-tests/memory_gc-itest.cc @@ -92,7 +92,7 @@ TEST_F(MemoryGcITest, TestPeriodicGc) { workload.Setup(); workload.Start(); ASSERT_EVENTUALLY([&]() { - ASSERT_GE(workload.rows_inserted(), 1000000); + ASSERT_GE(workload.rows_inserted(), 100000); }); workload.StopAndJoin(); }
