Repository: hbase
Updated Branches:
  refs/heads/master 82483fad7 -> 31da4d0bc


HBASE-20200 list_procedures fails in shell

Signed-off-by: Ted Yu <yuzhih...@gmail.com>
Signed-off-by: Umesh Agashe <uaga...@cloudera.com>


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

Branch: refs/heads/master
Commit: 31da4d0bce69b3a47066a5df675756087ce4dc60
Parents: 82483fa
Author: Balazs Meszaros <balazs.mesza...@cloudera.com>
Authored: Wed Mar 14 17:31:15 2018 +0100
Committer: Peter Somogyi <psomo...@apache.org>
Committed: Thu Mar 15 08:19:50 2018 +0100

----------------------------------------------------------------------
 hbase-shell/src/main/ruby/shell/commands/list_procedures.rb | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/31da4d0b/hbase-shell/src/main/ruby/shell/commands/list_procedures.rb
----------------------------------------------------------------------
diff --git a/hbase-shell/src/main/ruby/shell/commands/list_procedures.rb 
b/hbase-shell/src/main/ruby/shell/commands/list_procedures.rb
index 77335b8..68842a0 100644
--- a/hbase-shell/src/main/ruby/shell/commands/list_procedures.rb
+++ b/hbase-shell/src/main/ruby/shell/commands/list_procedures.rb
@@ -35,7 +35,6 @@ EOF
 
         list = JSON.parse(admin.list_procedures)
         list.each do |proc|
-          formatter.row([proc])
           submitted_time = Time.at(Integer(proc['submittedTime']) / 1000).to_s
           last_update = Time.at(Integer(proc['lastUpdate']) / 1000).to_s
           formatter.row([proc['procId'], proc['className'], proc['state'],

Reply via email to