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 ki...@apache.org on 2020/06/02 14:52:23 UTC

[hadoop] branch branch-2.10 updated: HDFS-14931. hdfs crypto commands limit column width. Contributed by Eric Badger

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

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


The following commit(s) were added to refs/heads/branch-2.10 by this push:
     new 54c7d23  HDFS-14931. hdfs crypto commands limit column width. Contributed by Eric Badger
54c7d23 is described below

commit 54c7d23e582df80e50a14025a473ddabdf598417
Author: Kihwal Lee <ki...@apache.org>
AuthorDate: Tue Jun 2 09:52:06 2020 -0500

    HDFS-14931. hdfs crypto commands limit column width. Contributed by Eric Badger
    
    (cherry picked from commit 9ef6ed9c1c83b9752e772ece7a716a33045752bf)
---
 .../src/main/java/org/apache/hadoop/hdfs/tools/CryptoAdmin.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/tools/CryptoAdmin.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/tools/CryptoAdmin.java
index 14abf6e..27dae37 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/tools/CryptoAdmin.java
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/tools/CryptoAdmin.java
@@ -182,7 +182,7 @@ public class CryptoAdmin extends Configured implements Tool {
       try {
         final TableListing listing = new TableListing.Builder()
           .addField("").addField("", true)
-          .wrapWidth(AdminHelper.MAX_LINE_WIDTH).hideHeaders().build();
+          .hideHeaders().build();
         final RemoteIterator<EncryptionZone> it = admin.listEncryptionZones();
         while (it.hasNext()) {
           EncryptionZone ez = it.next();


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