Repository: incubator-atlas Updated Branches: refs/heads/0.7-incubating 41f79116a -> 4e1e7d2cd
ATLAS-930 QuickStart is failing when run after a specific sequence of operations (yhemanth via shwethags) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/4e1e7d2c Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/4e1e7d2c Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/4e1e7d2c Branch: refs/heads/0.7-incubating Commit: 4e1e7d2cd60b90fe8fa455e613bc738999c58a93 Parents: 41f7911 Author: Shwetha GS <[email protected]> Authored: Tue Jun 21 22:18:42 2016 +0530 Committer: Shwetha GS <[email protected]> Committed: Tue Jun 21 22:18:42 2016 +0530 ---------------------------------------------------------------------- release-log.txt | 1 + .../java/org/apache/atlas/discovery/DataSetLineageService.java | 3 +++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/4e1e7d2c/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 33905ad..3d2162c 100644 --- a/release-log.txt +++ b/release-log.txt @@ -30,6 +30,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags) ALL CHANGES: +ATLAS-930 QuickStart is failing when run after a specific sequence of operations (yhemanth via shwethags) ATLAS-929 Add test for trait preservation on column rename for non-default database (svimal2106 via shwethags) ATLAS-926 Change version in 0.7 branch to 0.7-incubating (shwethags) ATLAS-922 remove test atlas-application.properties embedded in atlas-typesystem.jar (madhan.neethiraj via yhemanth) http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/4e1e7d2c/repository/src/main/java/org/apache/atlas/discovery/DataSetLineageService.java ---------------------------------------------------------------------- diff --git a/repository/src/main/java/org/apache/atlas/discovery/DataSetLineageService.java b/repository/src/main/java/org/apache/atlas/discovery/DataSetLineageService.java index 28162cd..a2f47f0 100644 --- a/repository/src/main/java/org/apache/atlas/discovery/DataSetLineageService.java +++ b/repository/src/main/java/org/apache/atlas/discovery/DataSetLineageService.java @@ -119,6 +119,7 @@ public class DataSetLineageService implements LineageService { } @Override + @GraphTransaction public String getInputsGraphForEntity(String guid) throws AtlasException { LOG.info("Fetching lineage inputs graph for entity={}", guid); ParamChecker.notEmpty(guid, "Entity id"); @@ -136,6 +137,7 @@ public class DataSetLineageService implements LineageService { } @Override + @GraphTransaction public String getOutputsGraphForEntity(String guid) throws AtlasException { LOG.info("Fetching lineage outputs graph for entity guid={}", guid); ParamChecker.notEmpty(guid, "Entity id"); @@ -174,6 +176,7 @@ public class DataSetLineageService implements LineageService { } @Override + @GraphTransaction public String getSchemaForEntity(String guid) throws AtlasException { ParamChecker.notEmpty(guid, "Entity id"); LOG.info("Fetching schema for entity guid={}", guid);
