You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by he...@apache.org on 2019/12/06 18:48:11 UTC

[geode-benchmarks] 01/03: only exit 1 from analyze task if not in CI

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

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

commit 224a02313c4da629ed51f4772d0343bf572cdf70
Author: Helena A. Bales <hb...@pivotal.io>
AuthorDate: Thu Dec 5 16:24:46 2019 -0800

    only exit 1 from analyze task if not in CI
    
    Signed-off-by: Robert Houghton <rh...@pivotal.io>
---
 .../src/main/java/org/apache/geode/perftest/analysis/Analyzer.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/harness/src/main/java/org/apache/geode/perftest/analysis/Analyzer.java b/harness/src/main/java/org/apache/geode/perftest/analysis/Analyzer.java
index f4cca01..ec23704 100644
--- a/harness/src/main/java/org/apache/geode/perftest/analysis/Analyzer.java
+++ b/harness/src/main/java/org/apache/geode/perftest/analysis/Analyzer.java
@@ -107,7 +107,9 @@ public class Analyzer {
 
     if (errorMessage.length() > 0) {
       System.out.println(errorMessage);
-      System.exit(1);
+      if(!isCI) {
+        System.exit(1);
+      }
     }
 
   }