HADOOP-9899. Remove the debug message, added by HADOOP-8855, from KerberosAuthenticator.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1516745 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tsz-wo Sze 2013-08-23 08:40:15 +00:00
parent 3460ffa8e7
commit 95c4570eb1
2 changed files with 3 additions and 1 deletions

View File

@ -308,7 +308,6 @@ public class KerberosAuthenticator implements Authenticator {
* Sends the Kerberos token to the server.
*/
private void sendToken(byte[] outToken) throws IOException, AuthenticationException {
new Exception("sendToken").printStackTrace(System.out);
String token = base64.encodeToString(outToken);
conn = (HttpURLConnection) url.openConnection();
if (connConfigurator != null) {

View File

@ -150,6 +150,9 @@ Release 2.1.1-beta - UNRELEASED
HADOOP-9887. globStatus does not correctly handle paths starting with a drive
spec on Windows. (Chuan Liu via cnauroth)
HADOOP-9899. Remove the debug message, added by HADOOP-8855, from
KerberosAuthenticator. (szetszwo)
Release 2.1.0-beta - 2013-08-22
INCOMPATIBLE CHANGES