Repository: incubator-atlas Updated Branches: refs/heads/master 8cce9a9fc -> 78d787fec
ATLAS-942 Jenkins build failure - GraphRepoMapperScaleTest (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/78d787fe Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/78d787fe Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/78d787fe Branch: refs/heads/master Commit: 78d787fec222f3b6e8b26596cf566eaba8ee4b79 Parents: 8cce9a9 Author: Shwetha GS <[email protected]> Authored: Thu Jun 23 14:36:39 2016 +0530 Committer: Shwetha GS <[email protected]> Committed: Thu Jun 23 14:36:39 2016 +0530 ---------------------------------------------------------------------- distro/src/main/assemblies/src-package.xml | 1 + release-log.txt | 5 +++-- repository/src/test/java/org/apache/atlas/TestUtils.java | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/78d787fe/distro/src/main/assemblies/src-package.xml ---------------------------------------------------------------------- diff --git a/distro/src/main/assemblies/src-package.xml b/distro/src/main/assemblies/src-package.xml index 929fea6..ef6b45c 100755 --- a/distro/src/main/assemblies/src-package.xml +++ b/distro/src/main/assemblies/src-package.xml @@ -46,6 +46,7 @@ <exclude>distro/solr/**</exclude> <exclude>**/${sys:atlas.data}/**</exclude> <exclude>**/atlas.data/**</exclude> + <exclude>**/*.patch</exclude> </excludes> </fileSet> </fileSets> http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/78d787fe/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 0813495..8fa293a 100644 --- a/release-log.txt +++ b/release-log.txt @@ -6,6 +6,7 @@ INCOMPATIBLE CHANGES: ALL CHANGES: +ATLAS-942 Jenkins build failure - GraphRepoMapperScaleTest (shwethags) 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) @@ -56,7 +57,7 @@ ATLAS-929 Add test for trait preservation on column rename for non-default datab ATLAS-922 remove test atlas-application.properties embedded in atlas-typesystem.jar (madhan.neethiraj via yhemanth) ATLAS-725 UI : Filter out or highlight deleted entities in search result outputs(dsl, text) , schema view, and lineage graph (kevalbhatt18 via sumasai) ATLAS-897 Atlas UI: Feature to associate multiple assets with a term. (kevalbhatt18 via sumasai) -ATLAS-866 Improve association of terms with entity (Show tree view) (kevalbhatt18 via sumasai) +ATLAS-886 Improve association of terms with entity (Show tree view) (kevalbhatt18 via sumasai) ATLAS-877 CreateTime of an entity(for example hive table) changes for every update (sumasai) ATLAS-642 import-hive should create the lineage for external tables (svimal2106 via sumasai) ATLAS-901 Log messages that cannot be sent to Kafka to a specific log configuration (yhemanth) @@ -178,7 +179,7 @@ ATLAS-422 JavaDoc NotificationConsumer and NotificationInterface.(tbeerbower via ATLAS-536 Falcon hook loads incorrect configuration when -Datlas.conf is not given when falcon server startup (ayubkhan via shwethags) ATLAS-502 UI: Provide the ability to search for tags (anilsg via shwethags) ATLAS-364 UI Code standardization (darshankumar89 via shwethags) -ATLAS_396 Creating an entity with non-existing type results in "Unable to deserialize json" error (guptaneeru via sumasai) +ATLAS-396 Creating an entity with non-existing type results in "Unable to deserialize json" error (guptaneeru via sumasai) ATLAS-318 Config file conatining API endpoint + all api calls to be centralized (sanjayp via sumasai) ATLAS-471 Atlas Server could run out of memory due to Scala memory leak (yhemanth via sumasai) ATLAS-486 Updated pom.xml to fix scm url and upgrade plugin (sneethiraj via sumasai) http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/78d787fe/repository/src/test/java/org/apache/atlas/TestUtils.java ---------------------------------------------------------------------- diff --git a/repository/src/test/java/org/apache/atlas/TestUtils.java b/repository/src/test/java/org/apache/atlas/TestUtils.java index 0ce7acb..a159496 100755 --- a/repository/src/test/java/org/apache/atlas/TestUtils.java +++ b/repository/src/test/java/org/apache/atlas/TestUtils.java @@ -43,6 +43,7 @@ import org.apache.commons.lang.RandomStringUtils; import org.testng.Assert; import java.io.File; +import java.util.ArrayList; import java.util.Collection; import java.util.Date; @@ -334,7 +335,7 @@ public final class TestUtils { TypesDef typesDef = defineHiveTypes(); return typeSystem.defineTypes(typesDef).values(); } - return null; + return new ArrayList<>(); } public static final String randomString() {
