You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by ra...@apache.org on 2014/09/12 00:19:37 UTC

[32/41] git commit: FALCON-338 late data recording is enabled by default for all feeds irrespective of late arrival config(2). Fixing checkstyle bug

FALCON-338 late data recording is enabled by default for all feeds irrespective of late arrival config(2). Fixing checkstyle bug


Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/581e5923
Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/581e5923
Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/581e5923

Branch: refs/heads/FALCON-585
Commit: 581e5923e7589d9625fc5d49cad13f1e46569706
Parents: 1a3728b
Author: Suhas V <su...@inmobi.com>
Authored: Fri Sep 5 23:11:20 2014 +0530
Committer: Suhas V <su...@inmobi.com>
Committed: Fri Sep 5 23:11:20 2014 +0530

----------------------------------------------------------------------
 common/src/main/java/org/apache/falcon/entity/EntityUtil.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/581e5923/common/src/main/java/org/apache/falcon/entity/EntityUtil.java
----------------------------------------------------------------------
diff --git a/common/src/main/java/org/apache/falcon/entity/EntityUtil.java b/common/src/main/java/org/apache/falcon/entity/EntityUtil.java
index 9b66aed..b8f2d7d 100644
--- a/common/src/main/java/org/apache/falcon/entity/EntityUtil.java
+++ b/common/src/main/java/org/apache/falcon/entity/EntityUtil.java
@@ -614,7 +614,7 @@ public final class EntityUtil {
             }
 
             //If late Arrival is not configured do not process further
-            if(((Feed) entity).getLateArrival() == null){
+            if (((Feed) entity).getLateArrival() == null){
                 return null;
             }