You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2018/07/26 07:55:06 UTC

[flink] branch master updated: [FLINK-9927][py][docs] Change .print() to .output()

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e1c6e5  [FLINK-9927][py][docs] Change .print() to .output()
6e1c6e5 is described below

commit 6e1c6e57c183590940a2a2ab2a15e0fe608d27e4
Author: Joe Malt <Jo...@users.noreply.github.com>
AuthorDate: Thu Jul 26 00:55:00 2018 -0700

    [FLINK-9927][py][docs] Change .print() to .output()
---
 docs/dev/stream/python.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/dev/stream/python.md b/docs/dev/stream/python.md
index 887d983..adce83f 100644
--- a/docs/dev/stream/python.md
+++ b/docs/dev/stream/python.md
@@ -104,7 +104,7 @@ def main(factory):
         .key_by(Selector()) \
         .time_window(milliseconds(50)) \
         .reduce(Sum()) \
-        .print()
+        .output()
     env.execute()
 
 {% endhighlight %}