HADOOP-12347. Fix mismatch parameter name in javadocs of AuthToken#setMaxInactives. Contributed by Xiaoyu Yao

This commit is contained in:
Xiaoyu Yao 2015-08-21 16:32:16 -07:00
parent 22de7c1dca
commit caa636bf10
2 changed files with 8 additions and 1 deletions

View File

@ -96,7 +96,8 @@ protected static void checkForIllegalArgument(String value, String name) {
/**
* Sets the max inactive interval of the token.
*
* @param max inactive interval of the token in milliseconds since the epoch.
* @param interval max inactive interval of the token in milliseconds since
* the epoch.
*/
public void setMaxInactives(long interval) {
this.maxInactives = interval;

View File

@ -750,6 +750,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12295. Improve NetworkTopology#InnerNode#remove logic. (yliu)
HADOOP-12050. Enable MaxInactiveInterval for hadoop http auth token
(hzlu via benoyantony)
OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp
@ -1067,6 +1070,9 @@ Release 2.8.0 - UNRELEASED
because NM container recovery declares AM container as LOST
(adhoot via rkanter)
HADOOP-12347. Fix mismatch parameter name in javadocs of
AuthToken#setMaxInactives (xyao)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES