Repository: flink
Updated Branches:
  refs/heads/master 2ac09c084 -> 312e08534


[hotfix] [docs] Fix log file name in quick start guide

Program output is written to TaskManager logs.

This closes #4641


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

Branch: refs/heads/master
Commit: a8dffff8c75a7aa78e9346d1a6748e4db649310a
Parents: 2ac09c0
Author: Michael Fong <mcfong.o...@gmail.com>
Authored: Tue Sep 5 15:32:00 2017 +0800
Committer: Greg Hogan <c...@greghogan.com>
Committed: Fri Sep 15 16:40:46 2017 -0400

----------------------------------------------------------------------
 docs/quickstart/setup_quickstart.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/a8dffff8/docs/quickstart/setup_quickstart.md
----------------------------------------------------------------------
diff --git a/docs/quickstart/setup_quickstart.md 
b/docs/quickstart/setup_quickstart.md
index 1b5a1e9..0e4f3d8 100644
--- a/docs/quickstart/setup_quickstart.md
+++ b/docs/quickstart/setup_quickstart.md
@@ -269,7 +269,7 @@ window of processing time, as long as words are floating in.
   </div>
 
 * Words are counted in time windows of 5 seconds (processing time, tumbling
-  windows) and are printed to `stdout`. Monitor the JobManager's output file
+  windows) and are printed to `stdout`. Monitor the TaskManager's output file
   and write some text in `nc` (input is sent to Flink line by line after
   hitting <RETURN>):
 
@@ -284,7 +284,7 @@ window of processing time, as long as words are floating in.
   as words are floating in, e.g.:
 
   ~~~bash
-  $ tail -f log/flink-*-jobmanager-*.out
+  $ tail -f log/flink-*-taskmanager-*.out
   lorem : 1
   bye : 1
   ipsum : 4

Reply via email to