From 09f7394d33842e3255cd498d985944dd4442d583 Mon Sep 17 00:00:00 2001 From: Artem Ervits Date: Thu, 30 May 2019 12:55:24 -0400 Subject: [PATCH] HBASE-22464 Improvements to hbase-vote script --- dev-support/hbase-vote.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git dev-support/hbase-vote.sh dev-support/hbase-vote.sh index 0d6c316d27..1ce7a73b42 100755 --- dev-support/hbase-vote.sh +++ dev-support/hbase-vote.sh @@ -107,7 +107,7 @@ function download_and_import_keys() { function download_release_candidate () { # get all files from release candidate repo - wget -r -np -nH --cut-dirs 4 "${SOURCE_URL}" + wget -r -np -N -nH --cut-dirs 4 "${SOURCE_URL}" } function verify_signatures() { @@ -144,7 +144,7 @@ function build_from_source() { function run_all_tests() { rm -f "${OUTPUT_PATH_PREFIX}"_run_all_tests - mvn test -fae -P runAllTests -Dsurefire.rerunFailingTestsCount=3 2>&1 | tee "${OUTPUT_PATH_PREFIX}"_run_all_tests && UNIT_TEST_PASSED=1 + mvn test -fn -P runAllTests -Dsurefire.rerunFailingTestsCount=3 2>&1 | tee "${OUTPUT_PATH_PREFIX}"_run_all_tests && UNIT_TEST_PASSED=1 } function execute() { -- 2.16.2