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/08/27 06:30:54 UTC

hbase git commit: HBASE-18467 more debug

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 2989a0be1 -> fe61f0da8


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/fe61f0da
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/fe61f0da
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/fe61f0da

Branch: refs/heads/HBASE-18467
Commit: fe61f0da8dddff392a19e933f8ffc0684d332691
Parents: 2989a0b
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 27 01:30:40 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Sun Aug 27 01:30:40 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/fe61f0da/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"