Repository: hbase Updated Branches: refs/heads/HBASE-18467 f1785a542 -> 0d3162da0
HBASE-18467 more change information. some debug about message. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/0d3162da Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0d3162da Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0d3162da Branch: refs/heads/HBASE-18467 Commit: 0d3162da04686ca9f7fa065a07b87c7565733c39 Parents: f1785a5 Author: Sean Busbey <[email protected]> Authored: Mon Aug 21 23:14:22 2017 -0500 Committer: Sean Busbey <[email protected]> Committed: Mon Aug 21 23:14:22 2017 -0500 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/0d3162da/dev-support/Jenkinsfile ---------------------------------------------------------------------- diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 2ada0ea..53215ec 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/Jenkinsfile @@ -402,12 +402,12 @@ END echo "[DEBUG] there are changes in the change set. Attempting to post comments." } for ( change in changelist ) { + def msg = change.msg echo "change: ${change}" - echo " ${change.author}" - echo " ${change.msg}" - echo " ${change.msgAnnotated}" + echo " ${change.commitId} : ${change.currentRevision} : ${change.author} : ${msg}" echo "" - change.msg.findAll( /HBASE-[0-9]+/ ).each { currentIssue -> + echo "[DEBUG] msg is of class ${msg.class}" + msg.findAll( /HBASE-[0-9]+/ ).each { currentIssue -> echo "[DEBUG] found jira key: ${currentIssue}" if ( currentIssue in seenJiras ) { echo "[DEBUG] already commented on ${currentIssue}."
