You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pr...@apache.org on 2016/03/06 08:01:01 UTC

hive git commit: HIVE-13199: NDC stopped working in LLAP logging (Prasanth Jayachandran reviewed by Sergey Shelukhin)

Repository: hive
Updated Branches:
  refs/heads/master d4f274867 -> 2f31019d5


HIVE-13199: NDC stopped working in LLAP logging (Prasanth Jayachandran reviewed by Sergey Shelukhin)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/2f31019d
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/2f31019d
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/2f31019d

Branch: refs/heads/master
Commit: 2f31019d513289cb664d4b5cd9846dd5b5febbaa
Parents: d4f2748
Author: Prasanth Jayachandran <j....@gmail.com>
Authored: Sun Mar 6 01:00:48 2016 -0600
Committer: Prasanth Jayachandran <j....@gmail.com>
Committed: Sun Mar 6 01:00:48 2016 -0600

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hive/llap/cli/LlapServiceDriver.java    | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/2f31019d/llap-server/src/java/org/apache/hadoop/hive/llap/cli/LlapServiceDriver.java
----------------------------------------------------------------------
diff --git a/llap-server/src/java/org/apache/hadoop/hive/llap/cli/LlapServiceDriver.java b/llap-server/src/java/org/apache/hadoop/hive/llap/cli/LlapServiceDriver.java
index 46edc42..4cce53b 100644
--- a/llap-server/src/java/org/apache/hadoop/hive/llap/cli/LlapServiceDriver.java
+++ b/llap-server/src/java/org/apache/hadoop/hive/llap/cli/LlapServiceDriver.java
@@ -268,6 +268,8 @@ public class LlapServiceDriver {
         org.apache.logging.log4j.Logger.class, // log4j-api
         org.apache.logging.log4j.core.Appender.class, // log4j-core
         org.apache.logging.slf4j.Log4jLogger.class, // log4j-slf4j
+        // log4j-1.2-API needed for NDC
+        org.apache.log4j.NDC.class,
     };
 
     for (Class<?> c : dependencies) {