浏览代码

HADOOP-10834. Typo in CredentialShell usage. (Benoy Antony via umamahesh)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1610794 13f79535-47bb-0310-9956-ffa450edef68
Uma Maheswara Rao G 10 年之前
父节点
当前提交
317542f51f

+ 2 - 0
hadoop-common-project/hadoop-common/CHANGES.txt

@@ -381,6 +381,8 @@ Trunk (Unreleased)
 
     HADOOP-10831. UserProvider is not thread safe. (Benoy Antony via umamahesh)
 
+    HADOOP-10834. Typo in CredentialShell usage. (Benoy Antony via umamahesh)
+
   OPTIMIZATIONS
 
     HADOOP-7761. Improve the performance of raw comparisons. (todd)

+ 1 - 1
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/alias/CredentialShell.java

@@ -264,7 +264,7 @@ public class CredentialShell extends Configured implements Tool {
                   alias + " from CredentialProvider " + provider.toString() +
                   ". Continue?:");
           if (!cont) {
-            out.println("Nothing has been be deleted.");
+            out.println("Nothing has been deleted.");
           }
           return cont;
         } catch (IOException e) {