git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2.1-beta@1522710 13f79535-47bb-0310-9956-ffa450edef68
@@ -103,6 +103,9 @@ Release 2.1.1-beta - UNRELEASED
HADOOP-9932. Improper synchronization in RetryCache. (kihwal)
+ HADOOP-9958. Add old constructor back to DelegationTokenInformation to
+ unbreak downstream builds. (Andrew Wang)
+
Release 2.1.0-beta - 2013-08-22
INCOMPATIBLE CHANGES
@@ -444,6 +444,10 @@ extends AbstractDelegationTokenIdentifier>
byte[] password;
String trackingId;
+ public DelegationTokenInformation(long renewDate, byte[] password) {
+ this(renewDate, password, null);
+ }
public DelegationTokenInformation(long renewDate, byte[] password,
String trackingId) {
this.renewDate = renewDate;