From 0f843f5d0aecae645f49c4e15c1799de120cee79 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Mon, 13 Jun 2011 23:31:28 +0000 Subject: [PATCH] HBASE-3983 list command in shell seems broken git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1135337 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 1 + src/main/ruby/shell/formatter.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index bb0dae3e0cb..5debf525f40 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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) diff --git a/src/main/ruby/shell/formatter.rb b/src/main/ruby/shell/formatter.rb index 07193496dc5..63328fdfc8b 100644 --- a/src/main/ruby/shell/formatter.rb +++ b/src/main/ruby/shell/formatter.rb @@ -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