YARN-3182. Cleanup switch statement in ApplicationMasterLauncher#handle(). Contributed by Ray Chiang.
This commit is contained in:
parent
b0d81e05ab
commit
110cf6b9a3
|
@ -292,6 +292,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
YARN-3179. Update use of Iterator to Iterable in RMAdminCLI and
|
YARN-3179. Update use of Iterator to Iterable in RMAdminCLI and
|
||||||
CommonNodeLabelsManager. (Ray Chiang via xgong)
|
CommonNodeLabelsManager. (Ray Chiang via xgong)
|
||||||
|
|
||||||
|
YARN-3182. Cleanup switch statement in ApplicationMasterLauncher#handle().
|
||||||
|
(Ray Chiang via ozawa)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and
|
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and
|
||||||
|
|
|
@ -117,6 +117,7 @@ public class ApplicationMasterLauncher extends AbstractService implements
|
||||||
break;
|
break;
|
||||||
case CLEANUP:
|
case CLEANUP:
|
||||||
cleanup(application);
|
cleanup(application);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue