You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2018/01/03 23:16:30 UTC

hive git commit: HIVE-18365 : netty-all jar is not present in the llap tarball (Miklos Gergely via Gopal V)

Repository: hive
Updated Branches:
  refs/heads/master 006d69d88 -> eca6b8945


HIVE-18365 : netty-all jar is not present in the llap tarball (Miklos Gergely via Gopal V)

Signed-off-by: Ashutosh Chauhan <ha...@apache.org>


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

Branch: refs/heads/master
Commit: eca6b89458be22abae2529ae549894cb1ba75a6d
Parents: 006d69d
Author: Miklos Gergely <mg...@hortonworks.com>
Authored: Wed Jan 3 15:15:24 2018 -0800
Committer: Ashutosh Chauhan <ha...@apache.org>
Committed: Wed Jan 3 15:15:24 2018 -0800

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


http://git-wip-us.apache.org/repos/asf/hive/blob/eca6b894/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 4704351..36d5912 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
@@ -398,7 +398,8 @@ public class LlapServiceDriver {
               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, };
+              org.apache.log4j.NDC.class,
+              io.netty.util.NetUtil.class };
 
           for (Class<?> c : dependencies) {
             Path jarPath = new Path(Utilities.jarFinderGetJar(c));