You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by ja...@apache.org on 2016/07/31 04:29:13 UTC

oozie git commit: OOZIE-2539 Incorrect property key is used for 'hive log4j configuration file for execution mode' (abhishekbafna via jaydeepvishwakarma)

Repository: oozie
Updated Branches:
  refs/heads/master 4669d295f -> 273003062


OOZIE-2539 Incorrect property key is used for 'hive log4j configuration file for execution mode' (abhishekbafna via jaydeepvishwakarma)


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

Branch: refs/heads/master
Commit: 2730030624b46e0d6ffe869f7ccf3207173681e3
Parents: 4669d29
Author: jvishwakarma <jv...@walmartlabs.com>
Authored: Sun Jul 31 09:58:25 2016 +0530
Committer: jvishwakarma <jv...@walmartlabs.com>
Committed: Sun Jul 31 09:58:25 2016 +0530

----------------------------------------------------------------------
 release-log.txt                                                    | 1 +
 .../src/main/java/org/apache/oozie/action/hadoop/HiveMain.java     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/27300306/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index cef2405..01a8099 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 4.3.0 release (trunk - unreleased)
 
+OOZIE-2539 Incorrect property key is used for 'hive log4j configuration file for execution mode' (abhishekbafna via jaydeepvishwakarma)
 OOZIE-2565 [Oozie web Console] Make the timezones in settings tab to be sorted by default (meetchandan via jaydeepvishwakarma)
 OOZIE-2520 SortBy filter for ordering the jobs query results (abhishekbafna via jaydeepvishwakarma)
 OOZIE-2506 Add logs into RecoverService for logging information about queued commands (abhishekbafna via jaydeepvishwakarma) 

http://git-wip-us.apache.org/repos/asf/oozie/blob/27300306/sharelib/hive/src/main/java/org/apache/oozie/action/hadoop/HiveMain.java
----------------------------------------------------------------------
diff --git a/sharelib/hive/src/main/java/org/apache/oozie/action/hadoop/HiveMain.java b/sharelib/hive/src/main/java/org/apache/oozie/action/hadoop/HiveMain.java
index d8ce232..a2c75dc 100644
--- a/sharelib/hive/src/main/java/org/apache/oozie/action/hadoop/HiveMain.java
+++ b/sharelib/hive/src/main/java/org/apache/oozie/action/hadoop/HiveMain.java
@@ -222,7 +222,7 @@ public class HiveMain extends LauncherMain {
         arguments.add("--hiveconf");
         arguments.add("hive.log4j.file=" + new File(HIVE_L4J_PROPS).getAbsolutePath());
         arguments.add("--hiveconf");
-        arguments.add("hive.log4j.exec.file=" + new File(HIVE_EXEC_L4J_PROPS).getAbsolutePath());
+        arguments.add("hive.exec.log4j.file=" + new File(HIVE_EXEC_L4J_PROPS).getAbsolutePath());
 
         String scriptPath = hiveConf.get(HiveActionExecutor.HIVE_SCRIPT);
         String query = hiveConf.get(HiveActionExecutor.HIVE_QUERY);