YARN-2432. RMStateStore should process the pending events before close. Contributed by Varun Saxena

This commit is contained in:
Jian He 2014-11-14 17:24:09 -08:00
parent 1925e2a4ae
commit 9b860661a5
2 changed files with 4 additions and 1 deletions

View File

@ -93,6 +93,9 @@ Release 2.7.0 - UNRELEASED
YARN-2816. NM fail to start with NPE during container recovery (Zhihai Xu
via jlowe)
YARN-2432. RMStateStore should process the pending events before close.
(Varun Saxena via jianhe)
Release 2.6.0 - 2014-11-18
INCOMPATIBLE CHANGES

View File

@ -492,8 +492,8 @@ protected void serviceStart() throws Exception {
@Override
protected void serviceStop() throws Exception {
closeInternal();
dispatcher.stop();
closeInternal();
}
/**