YARN-3677. Fix findbugs warnings in yarn-server-resourcemanager. Contributed by Vinod Kumar Vavilapalli.
This commit is contained in:
parent
563eb1ad2a
commit
7401e5b5e8
|
@ -523,6 +523,9 @@ Release 2.7.1 - UNRELEASED
|
|||
|
||||
YARN-3601. Fix UT TestRMFailover.testRMWebAppRedirect. (Weiwei Yang via xgong)
|
||||
|
||||
YARN-3677. Fix findbugs warnings in yarn-server-resourcemanager.
|
||||
(Vinod Kumar Vavilapalli via ozawa)
|
||||
|
||||
Release 2.7.0 - 2015-04-20
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -230,6 +230,7 @@ public class RMAppManager implements EventHandler<RMAppManagerEvent>,
|
|||
success = true;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (success) {
|
||||
|
|
|
@ -100,7 +100,7 @@ public class FileSystemRMStateStore extends RMStateStore {
|
|||
private Path dtSequenceNumberPath = null;
|
||||
private int fsNumRetries;
|
||||
private long fsRetryInterval;
|
||||
private boolean isHDFS;
|
||||
private volatile boolean isHDFS;
|
||||
|
||||
@VisibleForTesting
|
||||
Path fsWorkingPath;
|
||||
|
|
Loading…
Reference in New Issue