You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2019/06/02 14:08:25 UTC

[hbase] branch master updated: HBASE-22522 The integration test in master branch's nightly job has error "ERROR: Only found 1050 rows."

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ab99e24  HBASE-22522 The integration test in master branch's nightly job has error "ERROR: Only found 1050 rows."
ab99e24 is described below

commit ab99e2486ef5ea9b4511507350d60403fc271cf6
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Sun Jun 2 11:58:34 2019 +0800

    HBASE-22522 The integration test in master branch's nightly job has error "ERROR: Only found 1050 rows."
---
 dev-support/hbase_nightly_pseudo-distributed-test.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-support/hbase_nightly_pseudo-distributed-test.sh b/dev-support/hbase_nightly_pseudo-distributed-test.sh
index 11ad609..2d77184 100755
--- a/dev-support/hbase_nightly_pseudo-distributed-test.sh
+++ b/dev-support/hbase_nightly_pseudo-distributed-test.sh
@@ -518,8 +518,8 @@ EOF
 
 echo "Verifying row count from example."
 example_rowcount=$(echo 'count "test:example"' | "${hbase_client}/bin/hbase" --config "${working_dir}/hbase-conf/" shell --noninteractive 2>/dev/null | tail -n 1)
-if [ "${example_rowcount}" -gt "1050" ]; then
-  echo "Found ${example_rowcount} rows, which is enough to cover 48 for import, 1000 example's use of user table regions, 2 for example's use of meta/root regions, and 1 for example's count record"
+if [ "${example_rowcount}" -gt "1049" ]; then
+  echo "Found ${example_rowcount} rows, which is enough to cover 48 for import, 1000 example's use of user table regions, 1 for example's use of meta region, and 1 for example's count record"
 else
   echo "ERROR: Only found ${example_rowcount} rows."
 fi