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 2020/03/30 23:57:03 UTC

[hive] branch master updated: HIVE-23097 : LLAP: LLAPServiceDriver is wrongly using fixed llap- prefix for tarball name (Ramesh Kumar via Gopal V)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d2ad5b0  HIVE-23097 : LLAP: LLAPServiceDriver is wrongly using fixed llap- prefix for tarball name (Ramesh Kumar via Gopal V)
d2ad5b0 is described below

commit d2ad5b061706a1d3cd55e59c769ed4f2af01cdbe
Author: RAMESH KUMAR THANGARAJAN <ra...@gmail.com>
AuthorDate: Mon Mar 30 16:56:23 2020 -0700

    HIVE-23097 : LLAP: LLAPServiceDriver is wrongly using fixed llap- prefix for tarball name (Ramesh Kumar via Gopal V)
    
    Signed-off-by: Ashutosh Chauhan <ha...@apache.org>
---
 .../java/org/apache/hadoop/hive/llap/cli/service/LlapServiceDriver.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llap-server/src/java/org/apache/hadoop/hive/llap/cli/service/LlapServiceDriver.java b/llap-server/src/java/org/apache/hadoop/hive/llap/cli/service/LlapServiceDriver.java
index 033cabf..fea8393 100644
--- a/llap-server/src/java/org/apache/hadoop/hive/llap/cli/service/LlapServiceDriver.java
+++ b/llap-server/src/java/org/apache/hadoop/hive/llap/cli/service/LlapServiceDriver.java
@@ -311,7 +311,7 @@ public class LlapServiceDriver {
 
     rc = runPackagePy(tmpDir, scriptParent, version, outputDir);
     if (rc == 0) {
-      String tarballName = "llap-" + version + ".tar.gz";
+      String tarballName = cl.getName() + "-" + version + ".tar.gz";
       startCluster(conf, cl.getName(), tarballName, packageDir, conf.getVar(ConfVars.LLAP_DAEMON_QUEUE_NAME));
     }
     return rc;