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