Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
Reviewed
Description
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>