Repository: incubator-atlas Updated Branches: refs/heads/master bb1c386a7 -> 2fb3057b1
ATLAS-1546: Changed to LOG.warn instead error in Hive hook should choose appropriate JAAS config if host uses kerberos ticket-cache (nixonrodrigues via kevalbhatt) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/2fb3057b Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/2fb3057b Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/2fb3057b Branch: refs/heads/master Commit: 2fb3057b1b2d77b78c2a47ac40cdf13dec3f3fef Parents: bb1c386 Author: kevalbhatt <[email protected]> Authored: Mon Feb 20 17:57:57 2017 +0530 Committer: kevalbhatt <[email protected]> Committed: Mon Feb 20 17:57:57 2017 +0530 ---------------------------------------------------------------------- notification/src/main/java/org/apache/atlas/hook/AtlasHook.java | 4 ++-- release-log.txt | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/2fb3057b/notification/src/main/java/org/apache/atlas/hook/AtlasHook.java ---------------------------------------------------------------------- diff --git a/notification/src/main/java/org/apache/atlas/hook/AtlasHook.java b/notification/src/main/java/org/apache/atlas/hook/AtlasHook.java index fb73d3a..65b88e9 100644 --- a/notification/src/main/java/org/apache/atlas/hook/AtlasHook.java +++ b/notification/src/main/java/org/apache/atlas/hook/AtlasHook.java @@ -224,7 +224,7 @@ public abstract class AtlasHook { try { ret = UserGroupInformation.isLoginKeytabBased(); } catch (Exception excp) { - LOG.error("Error in determining keytab for KafkaClient-JAAS config", excp); + LOG.warn("Error in determining keytab for KafkaClient-JAAS config", excp); } return ret; @@ -236,7 +236,7 @@ public abstract class AtlasHook { try { ret = UserGroupInformation.isLoginTicketBased(); } catch (Exception excp) { - LOG.error("Error in determining ticket-cache for KafkaClient-JAAS config", excp); + LOG.warn("Error in determining ticket-cache for KafkaClient-JAAS config", excp); } return ret; http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/2fb3057b/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 2c49879..29c98cf 100644 --- a/release-log.txt +++ b/release-log.txt @@ -9,12 +9,15 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai) ALL CHANGES: +ATLAS-1546: Changed to LOG.warn instead error in Hive hook should choose appropriate JAAS config if host uses kerberos ticket-cache (nixonrodrigues via kevalbhatt) +ATLAS-1569 Clear contents of RequestContextV1 at the end of the request (mneethiraj) +ATLAS-1570 Fix for Taxonomy service test failures (apoorvnaik via mneethiraj) ATLAS-1568 moved helper methods from org.apache.atlas.model package classes into an utility class (mneethiraj) ATLAS-1566 replace GSON ser-de with ObjectMapper ser-de (svimal2016 via mneethiraj) ATLAS-1551 auto update of reverse references in V1 API (dkantor) ATLAS-1565 Create EntityREST endpoints for delete operations (sarathkumarsubramanian via svimal2106) ATLAS-1547 Added tests for hard delete (sumasai) -ATLAS-1546 (ATLAS-1546.3.patch)Hive hook should choose appropriate JAAS config if host uses kerberos ticket-cache (nixonrodrigues via kevalbhat) +ATLAS-1546 (ATLAS-1546.3.patch)Hive hook should choose appropriate JAAS config if host uses kerberos ticket-cache (nixonrodrigues via kevalbhatt) ATLAS-1503 Export/import support to copy data between Atlas instances (ashutoshm via mneethiraj) ATLAS-1554 v2 EntityREST implementation for entity partial update (sarathkumarsubramanian via mneethiraj) ATLAS-1547 Fix DeleteHandlerV1 for new model changes and add tests (sumasai)
