You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eagle.apache.org by ji...@apache.org on 2016/12/14 14:43:56 UTC

incubator-eagle git commit: [MINOR] fix Failed to find entity definition of class TaskAttemptErrorCategor…

Repository: incubator-eagle
Updated Branches:
  refs/heads/master 8734c37cb -> 67c915127


[MINOR] fix Failed to find entity definition of class TaskAttemptErrorCategor\u2026

Author: wujinhu <wu...@126.com>

Closes #743 from wujinhu/EAGLE-795.


Project: http://git-wip-us.apache.org/repos/asf/incubator-eagle/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-eagle/commit/67c91512
Tree: http://git-wip-us.apache.org/repos/asf/incubator-eagle/tree/67c91512
Diff: http://git-wip-us.apache.org/repos/asf/incubator-eagle/diff/67c91512

Branch: refs/heads/master
Commit: 67c91512787ed50ebb976d0218cead62756f0b82
Parents: 8734c37
Author: wujinhu <wu...@126.com>
Authored: Wed Dec 14 22:43:34 2016 +0800
Committer: wujinhu <wu...@126.com>
Committed: Wed Dec 14 22:43:34 2016 +0800

----------------------------------------------------------------------
 .../org/apache/eagle/jpm/mr/historyentity/JPAEntityRepository.java  | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/67c91512/eagle-jpm/eagle-jpm-entity/src/main/java/org/apache/eagle/jpm/mr/historyentity/JPAEntityRepository.java
----------------------------------------------------------------------
diff --git a/eagle-jpm/eagle-jpm-entity/src/main/java/org/apache/eagle/jpm/mr/historyentity/JPAEntityRepository.java b/eagle-jpm/eagle-jpm-entity/src/main/java/org/apache/eagle/jpm/mr/historyentity/JPAEntityRepository.java
index 2303869..cbbdad3 100644
--- a/eagle-jpm/eagle-jpm-entity/src/main/java/org/apache/eagle/jpm/mr/historyentity/JPAEntityRepository.java
+++ b/eagle-jpm/eagle-jpm-entity/src/main/java/org/apache/eagle/jpm/mr/historyentity/JPAEntityRepository.java
@@ -37,5 +37,6 @@ public class JPAEntityRepository extends EntityRepository {
         entitySet.add(TaskAttemptCounterAPIEntity.class);
         entitySet.add(JobProcessTimeStampEntity.class);
         entitySet.add(JobCountEntity.class);
+        entitySet.add(TaskAttemptErrorCategoryEntity.class);
     }
 }