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

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new 89e016b  Suppressing extra output in the dump_results.sh script
89e016b is described below

commit 89e016b0d2a4e18147875cf0f072055703f307b9
Author: Dan Smith <dasm...@vmware.com>
AuthorDate: Wed Oct 13 21:13:47 2021 -0700

    Suppressing extra output in the dump_results.sh script
    
    Suppressing gradle and pushd/popd logging in the dump_results.sh script.
---
 geode-benchmarks/build.gradle              | 2 +-
 infrastructure/scripts/aws/dump_results.sh | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/geode-benchmarks/build.gradle b/geode-benchmarks/build.gradle
index 05537ba..73db68c 100644
--- a/geode-benchmarks/build.gradle
+++ b/geode-benchmarks/build.gradle
@@ -57,7 +57,7 @@ configurations {
 dependencies {
   geodeVersionResolver(group: 'org.apache.geode', name: 'geode-core', version: 
geodeVersion)
   geodeVersion = 
configurations.geodeVersionResolver.resolvedConfiguration.resolvedArtifacts.find
 {it.name == 'geode-core'}.moduleVersion.id.version
-  println "Building with Geode ${geodeVersion}."
+  logger.info("Building with Geode ${geodeVersion}.")
 
   implementation platform("org.apache.geode:geode-all-bom:${geodeVersion}")
 
diff --git a/infrastructure/scripts/aws/dump_results.sh 
b/infrastructure/scripts/aws/dump_results.sh
index b11cfcd..3d8bf92 100755
--- a/infrastructure/scripts/aws/dump_results.sh
+++ b/infrastructure/scripts/aws/dump_results.sh
@@ -20,6 +20,6 @@ set -e
 TOP_DIR=$(git rev-parse --show-toplevel)
 
 WORKING_DIR=$(pwd)
-pushd ${TOP_DIR}
-./gradlew dumpRun -PdumpWorkingDir="${WORKING_DIR}" --args "$*"
-popd
+pushd ${TOP_DIR} > /dev/null
+./gradlew -q dumpRun -PdumpWorkingDir="${WORKING_DIR}" --args "$*"
+popd > /dev/null

Reply via email to