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:08 UTC

[41/50] [abbrv] hbase git commit: HBASE-18467 more debug

HBASE-18467 more debug


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

Branch: refs/heads/HBASE-18467
Commit: da890256ea6c9cebdcb0db34b93093457d4aaad3
Parents: 3aa1dd0
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 27 01:30:40 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Sep 11 02:34:50 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/da890256/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 28ca8b7..50142bf 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -409,8 +409,10 @@ END
                echo "     ${change.author}"
                echo ""
                // Workaround for JENKINS-46358
-               writeFile file: 'tmp_commit_file', text: "${msg}"
-               sh '''grep -o -E 'HBASE-[0-9]+' 'tmp_commit_file' >matched_jiras'''
+               writeFile file: 'tmp_commit_file', text: msg
+               echo "finished writing commit to a file."
+               sh "grep -o -E 'HBASE-[0-9]+' 'tmp_commit_file' >matched_jiras"
+               echo "finished filtering via grep."
                def jiras = readFile(file: 'matched_jiras').split()
                if (jiras.length == 0) {
                  echo "[WARN] no JIRA key found in message, TODO email committer"