Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 6874e1a7b -> 907ec6775


HBASE-20200 list_procedures fails in shell

Signed-off-by: Ted Yu <[email protected]>
Signed-off-by: Umesh Agashe <[email protected]>


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

Branch: refs/heads/branch-2.0
Commit: 907ec677570d379fdd02216d2ad424e63500bf03
Parents: 6874e1a
Author: Balazs Meszaros <[email protected]>
Authored: Wed Mar 14 17:31:15 2018 +0100
Committer: Peter Somogyi <[email protected]>
Committed: Thu Mar 15 08:21:02 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/907ec677/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