Author: brandonli
Date: Thu Aug 7 22:47:52 2014
New Revision: 1616616
URL: http://svn.apache.org/r1616616
Log:
HADOOP-10929. Typo in Configuration.getPasswordFromCredentialProviders.
Contributed by Larry McCay
Modified:
hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java
Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1616616&r1=1616615&r2=1616616&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
(original)
+++ hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt Thu Aug
7 22:47:52 2014
@@ -545,6 +545,9 @@ Release 2.6.0 - UNRELEASED
HADOOP-10931 compile error on tools/hadoop-openstack (xukun via stevel)
+ HADOOP-10929. Typo in Configuration.getPasswordFromCredentialProviders
+ (lmccay via brandonli)
+
Release 2.5.0 - UNRELEASED
INCOMPATIBLE CHANGES
Modified:
hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java?rev=1616616&r1=1616615&r2=1616616&view=diff
==============================================================================
---
hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java
(original)
+++
hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/Configuration.java
Thu Aug 7 22:47:52 2014
@@ -1781,7 +1781,7 @@ public class Configuration implements It
public char[] getPassword(String name) throws IOException {
char[] pass = null;
- pass = getPasswordFromCredenitalProviders(name);
+ pass = getPasswordFromCredentialProviders(name);
if (pass == null) {
pass = getPasswordFromConfig(name);
@@ -1797,7 +1797,7 @@ public class Configuration implements It
* @return password or null if not found
* @throws IOException
*/
- protected char[] getPasswordFromCredenitalProviders(String name)
+ protected char[] getPasswordFromCredentialProviders(String name)
throws IOException {
char[] pass = null;
try {