Repository: hbase Updated Branches: refs/heads/HBASE-18467 0d3162da0 -> 4311b810a
HBASE-18467 just print all the methods on change, since the javadocs are wrong. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/4311b810 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/4311b810 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/4311b810 Branch: refs/heads/HBASE-18467 Commit: 4311b810a9603f0f7bab32db31f175fd0048df60 Parents: 0d3162d Author: Sean Busbey <[email protected]> Authored: Mon Aug 21 23:35:55 2017 -0500 Committer: Sean Busbey <[email protected]> Committed: Mon Aug 21 23:35:55 2017 -0500 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/4311b810/dev-support/Jenkinsfile ---------------------------------------------------------------------- diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 53215ec..092972c 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/Jenkinsfile @@ -403,10 +403,11 @@ END } for ( change in changelist ) { def msg = change.msg + echo "[DEBUG] msg is of class ${msg.class}" echo "change: ${change}" + echo " ${change.metaClass.methods*.name.sort().unique()}" echo " ${change.commitId} : ${change.currentRevision} : ${change.author} : ${msg}" echo "" - 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 ) {
