Repository: hadoop
Updated Branches:
  refs/heads/branch-3.0 80ef3e758 -> d78234222


YARN-9009. Fix flaky test TestEntityGroupFSTimelineStore.testCleanLogs. 
Contributed by OrDTesters.

(cherry picked from commit 1c09a10e9601bd628f1e887f3bf92c5a4ac286ab)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d7823422
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d7823422
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d7823422

Branch: refs/heads/branch-3.0
Commit: d78234222d98e9f31324411d74ca753f52ce610a
Parents: 80ef3e7
Author: Weiwei Yang <[email protected]>
Authored: Mon Dec 10 11:55:24 2018 +0800
Committer: Weiwei Yang <[email protected]>
Committed: Mon Dec 10 12:36:53 2018 +0800

----------------------------------------------------------------------
 .../yarn/server/timeline/TestEntityGroupFSTimelineStore.java   | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/d7823422/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/test/java/org/apache/hadoop/yarn/server/timeline/TestEntityGroupFSTimelineStore.java
----------------------------------------------------------------------
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/test/java/org/apache/hadoop/yarn/server/timeline/TestEntityGroupFSTimelineStore.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/test/java/org/apache/hadoop/yarn/server/timeline/TestEntityGroupFSTimelineStore.java
index 0458722..61da3c8 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/test/java/org/apache/hadoop/yarn/server/timeline/TestEntityGroupFSTimelineStore.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/test/java/org/apache/hadoop/yarn/server/timeline/TestEntityGroupFSTimelineStore.java
@@ -70,7 +70,7 @@ public class TestEntityGroupFSTimelineStore extends 
TimelineStoreTestUtils {
 
   private static final String SAMPLE_APP_PREFIX_CACHE_TEST = "1234_000";
   private static final int CACHE_TEST_CACHE_SIZE = 5;
-  
+
   private static final String TEST_SUMMARY_LOG_FILE_NAME
       = EntityGroupFSTimelineStore.SUMMARY_LOG_PREFIX + "test";
   private static final String TEST_DOMAIN_LOG_FILE_NAME
@@ -234,6 +234,8 @@ public class TestEntityGroupFSTimelineStore extends 
TimelineStoreTestUtils {
     Path pathAfter = appLogs.getAppDirPath();
     assertNotEquals(pathBefore, pathAfter);
     assertTrue(pathAfter.toString().contains(testDoneDirPath.toString()));
+
+    fs.delete(pathAfter, true);
   }
 
   @Test
@@ -483,7 +485,7 @@ public class TestEntityGroupFSTimelineStore extends 
TimelineStoreTestUtils {
       AppState appstate) {
     // stop before creating new store to get the lock
     store.stop();
-    
+
     EntityGroupFSTimelineStore newStore = new EntityGroupFSTimelineStore() {
       @Override
       protected AppState getAppState(ApplicationId appId) throws IOException {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to