HADOOP-13743. error message in AzureNativeFileSystemStore.connectUsingAnonymousCredentials has too many spaces.

Contributed by Mingliang Liu and Steve Loughran
This commit is contained in:
Steve Loughran 2017-08-29 15:06:00 +01:00
parent 1dfb3850c8
commit 37da90b17a
No known key found for this signature in database
GPG Key ID: 950CC3E032B79CA2
1 changed files with 3 additions and 3 deletions

View File

@ -731,14 +731,14 @@ public class AzureNativeFileSystemStore implements NativeFileSystemStore {
try { try {
if (!container.exists(getInstrumentedContext())) { if (!container.exists(getInstrumentedContext())) {
throw new AzureException("Container " + containerName + " in account " throw new AzureException("Container " + containerName + " in account "
+ accountName + " not found, and we can't create" + accountName + " not found, and we can't create it"
+ " it using anoynomous credentials, and no credentials found for them" + " using anonymous credentials, and no credentials found for them"
+ " in the configuration."); + " in the configuration.");
} }
} catch (StorageException ex) { } catch (StorageException ex) {
throw new AzureException("Unable to access container " + containerName throw new AzureException("Unable to access container " + containerName
+ " in account " + accountName + " 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); + " in the configuration.", ex);
} }