svn revert -c -1189989 for fixing the commit message (should be HADOOP-7745, not HADOOP-7545)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1189992 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tsz-wo Sze 2011-10-27 20:21:11 +00:00
parent 6a5956677e
commit 922d03ead6
2 changed files with 2 additions and 5 deletions

View File

@ -419,9 +419,6 @@ Release 0.23.0 - Unreleased
HADOOP-7509. Improve exception message thrown when Authentication is
required. (Ravi Prakash via suresh)
HADOOP-7545. Fix wrong variable name in exception message introduced
in HADOOP-7509. (Ravi Prakash via suresh)
OPTIMIZATIONS
HADOOP-7333. Performance improvement in PureJavaCrc32. (Eric Caspole

View File

@ -1172,9 +1172,9 @@ public int readAndProcess() throws IOException, InterruptedException {
}
if (isSecurityEnabled && authMethod == AuthMethod.SIMPLE) {
AccessControlException ae = new AccessControlException("Authorization ("
+ CommonConfigurationKeys.HADOOP_SECURITY_AUTHORIZATION
+ ") is enabled but authentication ("
+ CommonConfigurationKeys.HADOOP_SECURITY_AUTHENTICATION
+ ") is enabled but authentication ("
+ CommonConfigurationKeys.HADOOP_SECURITY_AUTHORIZATION
+ ") is configured as simple. Please configure another method "
+ "like kerberos or digest.");
setupResponse(authFailedResponse, authFailedCall, Status.FATAL,