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/14 04:00:04 UTC

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

Branch: refs/heads/HBASE-18467
Commit: 5c50b3ba7935243cadbda5a2d2cef4b42c01bf22
Parents: f9aa076
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 27 01:30:40 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Wed Sep 13 22:51:11 2017 -0500

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


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