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 we...@apache.org on 2019/07/30 23:53:11 UTC

[hadoop] branch trunk 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.

weichiu pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


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

commit 0f2dad6679b7fc35474a3d33dc40b0db89bb1d80
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.
---
 .../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 85015fb..348f86f 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