Repository: hbase
Updated Branches:
  refs/heads/branch-2 24ea9d1e4 -> 5ea0db0b1


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/5ea0db0b
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/5ea0db0b
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/5ea0db0b

Branch: refs/heads/branch-2
Commit: 5ea0db0b1f42978d3941a654e8efeba3cfdfe521
Parents: 24ea9d1
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:20:24 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/5ea0db0b/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