From 37da90b17a0db0635dbbdc6503a00cfa6f77ffb9 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Tue, 29 Aug 2017 15:06:00 +0100 Subject: [PATCH] HADOOP-13743. error message in AzureNativeFileSystemStore.connectUsingAnonymousCredentials has too many spaces. Contributed by Mingliang Liu and Steve Loughran --- .../apache/hadoop/fs/azure/AzureNativeFileSystemStore.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 cb3e9f65188..434217f7422 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); }