HADOOP-12347. Fix mismatch parameter name in javadocs of AuthToken#setMaxInactives. Contributed by Xiaoyu Yao
(cherry picked from commit caa636bf10
)
Conflicts:
hadoop-common-project/hadoop-common/CHANGES.txt
This commit is contained in:
parent
27ced8253b
commit
a7e5a88b59
|
@ -96,7 +96,8 @@ public class AuthToken implements Principal {
|
||||||
/**
|
/**
|
||||||
* Sets the max inactive interval of the token.
|
* 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) {
|
public void setMaxInactives(long interval) {
|
||||||
this.maxInactives = interval;
|
this.maxInactives = interval;
|
||||||
|
|
|
@ -172,6 +172,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
|
|
||||||
HADOOP-12295. Improve NetworkTopology#InnerNode#remove logic. (yliu)
|
HADOOP-12295. Improve NetworkTopology#InnerNode#remove logic. (yliu)
|
||||||
|
|
||||||
|
HADOOP-12050. Enable MaxInactiveInterval for hadoop http auth token
|
||||||
|
(hzlu via benoyantony)
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
HADOOP-12124. Add HTrace support for FsShell (cmccabe)
|
HADOOP-12124. Add HTrace support for FsShell (cmccabe)
|
||||||
|
@ -570,6 +573,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
because NM container recovery declares AM container as LOST
|
because NM container recovery declares AM container as LOST
|
||||||
(adhoot via rkanter)
|
(adhoot via rkanter)
|
||||||
|
|
||||||
|
HADOOP-12347. Fix mismatch parameter name in javadocs of
|
||||||
|
AuthToken#setMaxInactives (xyao)
|
||||||
|
|
||||||
Release 2.7.2 - UNRELEASED
|
Release 2.7.2 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
Loading…
Reference in New Issue