Commit 8cce9a9f by Suma Shivaprasad

ATLAS-920 Lineage graph is broken when there are multiple paths from same source…

ATLAS-920 Lineage graph is broken when there are multiple paths from same source table (kevalbhatt18 via sumasai)
parent fec43177
......@@ -210,7 +210,11 @@ define(['require',
if (!obj[val1]) {
that.startingPoint.push(val1);
}
that.edgesAndvertices.edges[val1] = [key];
if (that.edgesAndvertices.edges[val1]) {
that.edgesAndvertices.edges[val1].push(key);
} else {
that.edgesAndvertices.edges[val1] = [key];
}
});
});
} else {
......
......@@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES:
ALL CHANGES:
ATLAS-920 Lineage graph is broken when there are multiple paths from same source table (kevalbhatt18 via sumasai)
ATLAS-940 Type cache implementation property name in atlas-application.properties is incorrect ( dkantor via sumasai)
ATLAS-925 Change master version to 0.8-incubating (shwethags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment