You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by zj...@apache.org on 2015/05/14 06:55:13 UTC

tez git commit: TEZ-2437. FilterLinesByWord NPEs when run in Localmode (zjffdu)

Repository: tez
Updated Branches:
  refs/heads/master 282eb7240 -> fac3222c7


TEZ-2437. FilterLinesByWord NPEs when run in Localmode (zjffdu)


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

Branch: refs/heads/master
Commit: fac3222c768fbdfc8c1bbe55f94bc106900e6ae4
Parents: 282eb72
Author: Jeff Zhang <zj...@apache.org>
Authored: Thu May 14 12:54:57 2015 +0800
Committer: Jeff Zhang <zj...@apache.org>
Committed: Thu May 14 12:54:57 2015 +0800

----------------------------------------------------------------------
 CHANGES.txt                                                  | 1 +
 tez-dag/src/main/java/org/apache/tez/client/LocalClient.java | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/fac3222c/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index d34de0c..ff7550e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -22,6 +22,7 @@ INCOMPATIBLE CHANGES
     Default max limit increased. Should not affect existing users.
 
 ALL CHANGES:
+  TEZ-2437. FilterLinesByWord NPEs when run in Localmode
   TEZ-2432. Syntax error in DOAP file release section
   TEZ-2445. Disable the object cleanup in local mode in LogicalIOProcessorRuntimeTask.
   TEZ-2057. tez-dag/pom.xml contains versions for dependencies.

http://git-wip-us.apache.org/repos/asf/tez/blob/fac3222c/tez-dag/src/main/java/org/apache/tez/client/LocalClient.java
----------------------------------------------------------------------
diff --git a/tez-dag/src/main/java/org/apache/tez/client/LocalClient.java b/tez-dag/src/main/java/org/apache/tez/client/LocalClient.java
index 6eb58bd..a5e8e15 100644
--- a/tez-dag/src/main/java/org/apache/tez/client/LocalClient.java
+++ b/tez-dag/src/main/java/org/apache/tez/client/LocalClient.java
@@ -112,7 +112,6 @@ public class LocalClient extends FrameworkClient {
     // the TezClient is stopped, in order not to leak.
     if (dagAppMaster != null) {
       dagAppMaster.stop();
-      dagAppMaster = null;
     }
   }