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 17:50:58 UTC

hbase git commit: HBASE-18467 move changelist out of a variable.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 5cfd336ca -> c72da4fe3


HBASE-18467 move changelist out of a variable.


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

Branch: refs/heads/HBASE-18467
Commit: c72da4fe3d71f80c954224e4187356cb107b32b2
Parents: 5cfd336
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 27 12:49:33 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Sun Aug 27 12:49:33 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/c72da4fe/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index bafb3f7..012a9c8 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -395,6 +395,7 @@ END
            echo "[INFO] There are ${currentBuild.changeSets.size()} change sets."
            def seenJiras = []
            for (int i = 0; i < currentBuild.changeSets.size(); i++) {
+/*
              def changelist = currentBuild.changeSets.get(i)
              if ( changelist.isEmptySet() ) {
                echo "[DEBUG] change set was empty, skipping JIRA comments."
@@ -402,6 +403,8 @@ END
                echo "[DEBUG] there are changes in the change set. Attempting to post comments."
              }
              def changes = changelist.getItems()
+*/
+             def changes = currentBuild.changeSets.get(i).getItems()
              for (int j = 0; j < changes.length; j++) {
                def change = changes[j]
                CharSequence msg = change.msg