Browse Source

HADOOP-8189. LdapGroupsMapping shouldn't throw away IOException. Contributed by Jonathan Natkins.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1302783 13f79535-47bb-0310-9956-ffa450edef68
Aaron Myers 13 years ago
parent
commit
12fca4cf33

+ 2 - 0
hadoop-common-project/hadoop-common/CHANGES.txt

@@ -251,6 +251,8 @@ Release 0.23.3 - UNRELEASED
 
     HADOOP-8167. Configuration deprecation logic breaks backwards compatibility (tucu)
 
+    HADOOP-8189. LdapGroupsMapping shouldn't throw away IOException. (Jonathan Natkins via atm)
+
   BREAKDOWN OF HADOOP-7454 SUBTASKS
 
     HADOOP-7455. HA: Introduce HA Service Protocol Interface. (suresh)

+ 2 - 2
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/LdapGroupsMapping.java

@@ -314,8 +314,8 @@ public class LdapGroupsMapping
       }
       reader.close();
       return password.toString();
-    } catch (IOException ex) {
-      throw new RuntimeException("Could not read password file: " + pwFile);
+    } catch (IOException ioe) {
+      throw new RuntimeException("Could not read password file: " + pwFile, ioe);
     }
   }
 }