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 st...@apache.org on 2017/08/29 14:07:05 UTC

hadoop git commit: HADOOP-13743. error message in AzureNativeFileSystemStore.connectUsingAnonymousCredentials has too many spaces. Contributed by Mingliang Liu and Steve Loughran

Repository: hadoop
Updated Branches:
  refs/heads/branch-2.8 1dfb3850c -> 37da90b17


HADOOP-13743. error message in AzureNativeFileSystemStore.connectUsingAnonymousCredentials has too many spaces.
Contributed by Mingliang Liu and Steve Loughran


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/37da90b1
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/37da90b1
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/37da90b1

Branch: refs/heads/branch-2.8
Commit: 37da90b17a0db0635dbbdc6503a00cfa6f77ffb9
Parents: 1dfb385
Author: Steve Loughran <st...@apache.org>
Authored: Tue Aug 29 15:06:00 2017 +0100
Committer: Steve Loughran <st...@apache.org>
Committed: Tue Aug 29 15:06:00 2017 +0100

----------------------------------------------------------------------
 .../org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/37da90b1/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.java
----------------------------------------------------------------------
diff --git a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.java b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.java
index cb3e9f6..434217f 100644
--- a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.java
+++ b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.java
@@ -731,14 +731,14 @@ public class AzureNativeFileSystemStore implements NativeFileSystemStore {
     try {
       if (!container.exists(getInstrumentedContext())) {
         throw new AzureException("Container " + containerName + " in account "
-            + accountName + " not found, and we can't create"
-            + " it using anoynomous credentials, and no credentials found for them"
+            + accountName + " not found, and we can't create it"
+            + " using anonymous credentials, and no credentials found for them"
             + " in the configuration.");
       }
     } catch (StorageException ex) {
       throw new AzureException("Unable to access container " + containerName
           + " in account " + accountName
-          + " using anonymous credentials, and no credentials found for them "
+          + " using anonymous credentials, and no credentials found for them"
           + " in the configuration.", ex);
     }
 


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