You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2021/03/31 21:21:45 UTC

[geode-benchmarks] branch feature/redis-performance-testing updated: Fixing the name of the DumpResults class in build.gradle

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

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


The following commit(s) were added to refs/heads/feature/redis-performance-testing by this push:
     new d61b87d  Fixing the name of the DumpResults class in build.gradle
d61b87d is described below

commit d61b87d2927c5af780972045b7dfab64ce740394
Author: Dan Smith <da...@vmware.com>
AuthorDate: Wed Mar 31 14:21:16 2021 -0700

    Fixing the name of the DumpResults class in build.gradle
---
 harness/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/harness/build.gradle b/harness/build.gradle
index dd4d795..ab85423 100644
--- a/harness/build.gradle
+++ b/harness/build.gradle
@@ -36,7 +36,7 @@ repositories {
 }
 
 task(dumpRun, dependsOn: 'classes', type: JavaExec) {
-  main = 'org.apache.geode.perftest.analysis.Analyzer2'
+  main = 'org.apache.geode.perftest.analysis.DumpResults'
   workingDir = project.findProperty("dumpWorkingDir") ?: rootDir
   classpath = sourceSets.main.runtimeClasspath
 }