HDFS-14569. Result of crypto -listZones is not formatted properly. Contributed by hemanthboyina.

(cherry picked from 0f2dad6679)
This commit is contained in:
Wei-Chiu Chuang 2019-07-30 16:52:42 -07:00 committed by Erik Krogen
parent b906f53b0d
commit 9c9920897d
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ public class TableListing {
Column column = columns[i]; Column column = columns[i];
if (column.wrap) { if (column.wrap) {
int maxWidth = column.getMaxWidth(); int maxWidth = column.getMaxWidth();
if (maxWidth > 4) { if (maxWidth > 10) {
column.setWrapWidth(maxWidth-1); column.setWrapWidth(maxWidth-1);
modified = true; modified = true;
width -= 1; width -= 1;