Repository: tez Updated Branches: refs/heads/TEZ-3334 fe6746d78 -> 1136629cc
TEZ-3557. TEZ-3362 causes TestContainerLauncherWrapper#testDelegation to fail (Kuhu Shukla via jeagles) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/1136629c Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/1136629c Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/1136629c Branch: refs/heads/TEZ-3334 Commit: 1136629ccc4eeab7bd20930c235c7fd42be3dd59 Parents: fe6746d Author: Jonathan Eagles <[email protected]> Authored: Thu Dec 15 16:06:43 2016 -0600 Committer: Jonathan Eagles <[email protected]> Committed: Thu Dec 15 16:06:43 2016 -0600 ---------------------------------------------------------------------- TEZ-3334-CHANGES.txt | 1 + .../apache/tez/dag/app/launcher/TestContainerLauncherWrapper.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/1136629c/TEZ-3334-CHANGES.txt ---------------------------------------------------------------------- diff --git a/TEZ-3334-CHANGES.txt b/TEZ-3334-CHANGES.txt index 3383e50..7398916 100644 --- a/TEZ-3334-CHANGES.txt +++ b/TEZ-3334-CHANGES.txt @@ -4,6 +4,7 @@ Apache Tez Change Log INCOMPATIBLE CHANGES: ALL CHANGES: + TEZ-3557. TEZ-3362 causes TestContainerLauncherWrapper#testDelegation to fail TEZ-3361. Fetch Multiple Partitions from the Shuffle Handler TEZ-3360. Tez Custom Shuffle Handler Documentation TEZ-3411. TestShuffleHandler#testSendMapCount should not used hard coded ShuffleHandler port http://git-wip-us.apache.org/repos/asf/tez/blob/1136629c/tez-dag/src/test/java/org/apache/tez/dag/app/launcher/TestContainerLauncherWrapper.java ---------------------------------------------------------------------- diff --git a/tez-dag/src/test/java/org/apache/tez/dag/app/launcher/TestContainerLauncherWrapper.java b/tez-dag/src/test/java/org/apache/tez/dag/app/launcher/TestContainerLauncherWrapper.java index d786bf9..8778f32 100644 --- a/tez-dag/src/test/java/org/apache/tez/dag/app/launcher/TestContainerLauncherWrapper.java +++ b/tez-dag/src/test/java/org/apache/tez/dag/app/launcher/TestContainerLauncherWrapper.java @@ -24,7 +24,7 @@ public class TestContainerLauncherWrapper { @Test(timeout = 5000) public void testDelegation() throws Exception { PluginWrapperTestHelpers.testDelegation(ContainerLauncherWrapper.class, ContainerLauncher.class, - Sets.newHashSet("getContainerLauncher")); + Sets.newHashSet("getContainerLauncher", "dagComplete")); } }
