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 15:54:01 UTC

hbase git commit: HBASE-18467 since getLogs is off limits, try using getItems.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 6a94d74c8 -> ed050ea1a


HBASE-18467 since getLogs is off limits, try using getItems.


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

Branch: refs/heads/HBASE-18467
Commit: ed050ea1a1df539e2aec360f0e13a83d8f2c4749
Parents: 6a94d74
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 27 10:53:16 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Sun Aug 27 10:53:16 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/ed050ea1/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 5b6bb9e..3432849 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -401,9 +401,9 @@ END
              } else {
                echo "[DEBUG] there are changes in the change set. Attempting to post comments."
              }
-             def changes = changelist.getLogs()
-             for (int j = 0; j < changes.size(); j++) {
-               def change = changes.get(j)
+             def changes = changelist.getItems()
+             for (int j = 0; j < changes.length; j++) {
+               def change = changes[j]
                CharSequence msg = change.msg
                echo "[DEBUG] msg is of class ${msg.class}"
                echo "change: ${change}"