You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by am...@apache.org on 2021/08/31 18:00:36 UTC

[atlas] branch master updated (5deac62 -> e962143)

This is an automated email from the ASF dual-hosted git repository.

amestry pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git.


    from 5deac62  ATLAS-4378: UI - Implement session timeout on Atlas UI.
     new 50203e0  ATLAS-4402: Upgrade junit to 4.13.1
     new 38caee1  ATLAS-4401: Upgrade commons-io to 2.8.0
     new e962143  ATLAS-4406: Ignore configs:- A hive table DDL entity is created for ignored hive tables

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                               | 4 ++--
 .../org/apache/atlas/notification/preprocessor/HivePreprocessor.java  | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

[atlas] 02/03: ATLAS-4401: Upgrade commons-io to 2.8.0

Posted by am...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

amestry pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit 38caee17c9a80ea6196ec3363e0f3d58c905c580
Author: Disha Talreja <di...@cloudera.com>
AuthorDate: Wed Aug 25 11:27:46 2021 -0400

    ATLAS-4401: Upgrade commons-io to 2.8.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 7290db1..263b3e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -690,7 +690,7 @@
         <commons-conf.version>1.10</commons-conf.version>
         <commons-conf2.version>2.2</commons-conf2.version>
         <commons-el.version>1.0</commons-el.version>
-        <commons-io.version>2.6</commons-io.version>
+        <commons-io.version>2.8.0</commons-io.version>
         <commons-lang.version>2.6</commons-lang.version>
         <commons-logging.version>1.1.3</commons-logging.version>
         <commons-validator.version>1.6</commons-validator.version>

[atlas] 01/03: ATLAS-4402: Upgrade junit to 4.13.1

Posted by am...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

amestry pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit 50203e025852eda970bc812d9ba5ed2e5ba4242b
Author: Disha Talreja <di...@cloudera.com>
AuthorDate: Wed Aug 25 14:57:02 2021 -0400

    ATLAS-4402: Upgrade junit to 4.13.1
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8ae338c..7290db1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -728,7 +728,7 @@
         <joda-time.version>2.10.6</joda-time.version>
         <json.version>3.2.11</json.version>
         <jsr.version>1.1</jsr.version>
-        <junit.version>4.13</junit.version>
+        <junit.version>4.13.1</junit.version>
         <kafka.scala.binary.version>2.12</kafka.scala.binary.version>
         <kafka.version>2.5.0</kafka.version>
         <keycloak.version>6.0.1</keycloak.version>

[atlas] 03/03: ATLAS-4406: Ignore configs:- A hive table DDL entity is created for ignored hive tables

Posted by am...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

amestry pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit e962143866f69ad96a2207e07a5f0ce1d2e4797e
Author: Disha Talreja <di...@cloudera.com>
AuthorDate: Thu Aug 26 22:10:08 2021 -0400

    ATLAS-4406: Ignore configs:- A hive table DDL entity is created for ignored hive tables
---
 .../org/apache/atlas/notification/preprocessor/HivePreprocessor.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java b/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java
index bf6a623..083e343 100644
--- a/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java
+++ b/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java
@@ -71,6 +71,7 @@ public class HivePreprocessor {
                     context.addToIgnoredEntities(entity.getAttribute(ATTRIBUTE_SD));
                     context.addToIgnoredEntities(entity.getAttribute(ATTRIBUTE_COLUMNS));
                     context.addToIgnoredEntities(entity.getAttribute(ATTRIBUTE_PARTITION_KEYS));
+                    context.addToIgnoredEntities(entity.getAttribute(TYPE_HIVE_TABLE_DDL));
                 } else if (action == PreprocessAction.PRUNE) {
                     context.addToPrunedEntities(entity);