Repository: incubator-gearpump Updated Branches: refs/heads/master 6a4d16062 -> 3ec075b11
fix GEARPUMP161 application logs are located in wrong place on Yarn Author: huafengw <[email protected]> Closes #48 from huafengw/fix_161. Project: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/commit/3ec075b1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/tree/3ec075b1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/diff/3ec075b1 Branch: refs/heads/master Commit: 3ec075b118df2511f8577416ada15db08221799e Parents: 6a4d160 Author: huafengw <[email protected]> Authored: Fri Jul 1 09:47:23 2016 +0800 Committer: manuzhang <[email protected]> Committed: Fri Jul 1 09:47:23 2016 +0800 ---------------------------------------------------------------------- .../src/main/scala/org/apache/gearpump/cluster/worker/Worker.scala | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/3ec075b1/daemon/src/main/scala/org/apache/gearpump/cluster/worker/Worker.scala ---------------------------------------------------------------------- diff --git a/daemon/src/main/scala/org/apache/gearpump/cluster/worker/Worker.scala b/daemon/src/main/scala/org/apache/gearpump/cluster/worker/Worker.scala index bc60694..ff74368 100644 --- a/daemon/src/main/scala/org/apache/gearpump/cluster/worker/Worker.scala +++ b/daemon/src/main/scala/org/apache/gearpump/cluster/worker/Worker.scala @@ -362,6 +362,7 @@ private[cluster] object Worker { .withoutPath(GEARPUMP_CLUSTER_MASTERS) .withoutPath(GEARPUMP_HOME) .withoutPath(GEARPUMP_LOG_DAEMON_DIR) + .withoutPath(GEARPUMP_LOG_APPLICATION_DIR) .withoutPath(GEARPUMP_CLUSTER_EXECUTOR_WORKER_SHARE_SAME_PROCESS) // Falls back to workerConfig .withFallback(workerConfig)
