YARN-6618. TestNMLeveldbStateStoreService#testCompactionCycle can fail if compaction occurs more than once. Contributed by Jason Lowe.

(cherry picked from commit 19482e0d09)
This commit is contained in:
Eric Payne 2017-05-19 11:24:54 -05:00
parent 23bbbce63e
commit 71d91d53bf
1 changed files with 1 additions and 1 deletions

View File

@ -918,7 +918,7 @@ public class TestNMLeveldbStateStoreService {
};
store.init(conf);
store.start();
verify(mockdb, timeout(10000)).compactRange(
verify(mockdb, timeout(10000).atLeastOnce()).compactRange(
(byte[]) isNull(), (byte[]) isNull());
store.close();
}