This is an automated email from the ASF dual-hosted git repository.
dianfu 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 56bbd1dd6f8 [hotfix][docs] Fix the PyFlink job submission command
56bbd1dd6f8 is described below
commit 56bbd1dd6f83652d2d2c29efef9f21dbcca7b6e3
Author: Dian Fu <[email protected]>
AuthorDate: Thu Aug 17 13:37:29 2023 +0800
[hotfix][docs] Fix the PyFlink job submission command
---
docs/content.zh/docs/deployment/cli.md | 2 +-
docs/content/docs/deployment/cli.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content.zh/docs/deployment/cli.md
b/docs/content.zh/docs/deployment/cli.md
index 64403e00877..de9dccf85d0 100644
--- a/docs/content.zh/docs/deployment/cli.md
+++ b/docs/content.zh/docs/deployment/cli.md
@@ -400,7 +400,7 @@ $ ./bin/flink run \
- Run a PyFlink job with pyFiles and the main entry module specified in
`--pyModule`:
```bash
$ ./bin/flink run \
- --pyModule table.word_count \
+ --pyModule word_count \
--pyFiles examples/python/table
```
diff --git a/docs/content/docs/deployment/cli.md
b/docs/content/docs/deployment/cli.md
index 51d0cc4a342..fe5bc30b276 100644
--- a/docs/content/docs/deployment/cli.md
+++ b/docs/content/docs/deployment/cli.md
@@ -398,7 +398,7 @@ $ ./bin/flink run \
- Run a PyFlink job with pyFiles and the main entry module specified in
`--pyModule`:
```bash
$ ./bin/flink run \
- --pyModule table.word_count \
+ --pyModule word_count \
--pyFiles examples/python/table
```