-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.9.0, 3.0.0-alpha4
-
Component/s: documentation, fs/azure
-
Labels:None
-
Target Version/s:
-
Hadoop Flags:Reviewed
In SimpleKeyProvider, we have following code for getting the key:
protected static final String KEY_ACCOUNT_KEY_PREFIX = "fs.azure.account.key."; ... protected String getStorageAccountKeyName(String accountName) { return KEY_ACCOUNT_KEY_PREFIX + accountName; }
While in documentation index.md, we have:
<property> <name>fs.azure.account.key.youraccount.blob.core.windows.net</name> <value>YOUR ACCESS KEY</value> </property>