You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by ve...@apache.org on 2014/09/18 06:42:09 UTC

git commit: FALCON-732 Lineage capture fails for an instance thats not generated by falcon - checkstyle fix. Contributed by Sowmya Ramesh

Repository: incubator-falcon
Updated Branches:
  refs/heads/master 33b420b5d -> a0f180490


FALCON-732 Lineage capture fails for an instance thats not generated by falcon - checkstyle fix. Contributed by Sowmya Ramesh


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

Branch: refs/heads/master
Commit: a0f1804901abbae283ff0d04f7fc40aa36319121
Parents: 33b420b
Author: Venkatesh Seetharam <ve...@apache.org>
Authored: Wed Sep 17 21:41:59 2014 -0700
Committer: Venkatesh Seetharam <ve...@apache.org>
Committed: Wed Sep 17 21:41:59 2014 -0700

----------------------------------------------------------------------
 .../apache/falcon/metadata/InstanceRelationshipGraphBuilder.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/a0f18049/common/src/main/java/org/apache/falcon/metadata/InstanceRelationshipGraphBuilder.java
----------------------------------------------------------------------
diff --git a/common/src/main/java/org/apache/falcon/metadata/InstanceRelationshipGraphBuilder.java b/common/src/main/java/org/apache/falcon/metadata/InstanceRelationshipGraphBuilder.java
index 764e732..c9cbf0b 100644
--- a/common/src/main/java/org/apache/falcon/metadata/InstanceRelationshipGraphBuilder.java
+++ b/common/src/main/java/org/apache/falcon/metadata/InstanceRelationshipGraphBuilder.java
@@ -191,7 +191,7 @@ public class InstanceRelationshipGraphBuilder extends RelationshipGraphBuilder {
         if (feedInstanceVertex == null) { // No record of instances NOT generated by Falcon
             LOG.info("{} instance vertex {} does not exist, add it",
                     RelationshipType.FEED_INSTANCE, feedInstanceName);
-            feedInstanceVertex = addFeedInstance( // add a new instance
+            feedInstanceVertex = addFeedInstance(// add a new instance
                     feedInstanceName, context, feedName, context.getSrcClusterName());
         }