You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/09/11 07:43:14 UTC

[47/50] [abbrv] hbase git commit: HBASE-18467 trying without try/catch, per Andrew.

HBASE-18467 trying without try/catch, per Andrew.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7c8fabef
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7c8fabef
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7c8fabef

Branch: refs/heads/HBASE-18467
Commit: 7c8fabef4e8d9b3e7a657806057cc868d5d5d2eb
Parents: e1c7f87
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 27 11:52:06 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Sep 11 02:34:50 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/7c8fabef/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 3432849..5a398e1 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -365,7 +365,9 @@ END
   post {
     always {
       script {
+/*
          try {
+*/
            sh "printenv"
            def results = ["${env.OUTPUT_RELATIVE_GENERAL}/failure", "${env.OUTPUT_RELATIVE_GENERAL}/success",
                           "${env.OUTPUT_RELATIVE_JDK7}/failure", "${env.OUTPUT_RELATIVE_JDK7}/success",
@@ -433,10 +435,12 @@ END
                }
              }
            }
+/*
         } catch (Exception exception) {
           echo "Got exception: ${exception}"
           echo "	${exception.getStackTrace()}"
         }
+*/
       }
     }
   }