You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by xk...@apache.org on 2019/09/18 17:32:36 UTC

[hadoop] branch branch-2 updated: HDFS-14569. Result of crypto -listZones is not formatted properly. Contributed by hemanthboyina.

This is an automated email from the ASF dual-hosted git repository.

xkrogen pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new ac19248  HDFS-14569. Result of crypto -listZones is not formatted properly. Contributed by hemanthboyina.
ac19248 is described below

commit ac1924896a06b9edb6ad585d3d19ed6910dc594a
Author: Wei-Chiu Chuang <we...@apache.org>
AuthorDate: Tue Jul 30 16:52:42 2019 -0700

    HDFS-14569. Result of crypto -listZones is not formatted properly. Contributed by hemanthboyina.
    
    (cherry picked from 0f2dad6679b7fc35474a3d33dc40b0db89bb1d80)
    (cherry picked from 9c9920897de182c3da3ad33ff53e506242bbd362)
    (cherry picked from 6af1ecc8e4a4067dd4a40d0c09c8d700e6fcc539)
---
 .../src/main/java/org/apache/hadoop/tools/TableListing.java             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/tools/TableListing.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/tools/TableListing.java
index bc2e2d4..f013722 100644
--- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/tools/TableListing.java
+++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/tools/TableListing.java
@@ -234,7 +234,7 @@ public class TableListing {
         Column column = columns[i];
         if (column.wrap) {
           int maxWidth = column.getMaxWidth();
-          if (maxWidth > 4) {
+          if (maxWidth > 10) {
             column.setWrapWidth(maxWidth-1);
             modified = true;
             width -= 1;


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org