Author: stack
Date: Mon Jun 13 23:31:28 2011
New Revision: 1135337

URL: http://svn.apache.org/viewvc?rev=1135337&view=rev
Log:
HBASE-3983 list command in shell seems broken

Modified:
    hbase/trunk/CHANGES.txt
    hbase/trunk/src/main/ruby/shell/formatter.rb

Modified: hbase/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1135337&r1=1135336&r2=1135337&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Mon Jun 13 23:31:28 2011
@@ -123,6 +123,7 @@ Release 0.91.0 - Unreleased
    HBASE-3978  Rowlock lease renew doesn't work when custom coprocessor
                indicates to bypass default action (Ming Ma)
    HBASE-3963  Schedule all log-spliiting at startup all at once (mingjian)
+   HBASE-3983  list command in shell seems broken
 
   IMPROVEMENTS
    HBASE-3290  Max Compaction Size (Nicolas Spiegelberg via Stack)  

Modified: hbase/trunk/src/main/ruby/shell/formatter.rb
URL: 
http://svn.apache.org/viewvc/hbase/trunk/src/main/ruby/shell/formatter.rb?rev=1135337&r1=1135336&r2=1135337&view=diff
==============================================================================
--- hbase/trunk/src/main/ruby/shell/formatter.rb (original)
+++ hbase/trunk/src/main/ruby/shell/formatter.rb Mon Jun 13 23:31:28 2011
@@ -74,7 +74,7 @@ module Shell
         if args.length == 1
           splits = split(@max_width, dump(args[0]))
           for l in splits
-            output(l)
+            output(@mac_width, l)
             @out.puts
           end
         elsif args.length == 2


Reply via email to