This is an automated email from the ASF dual-hosted git repository.
dianfu pushed a commit to branch release-1.17
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.17 by this push:
new aba922fa25f [hotfix][docs] Fix the PyFlink job submission command
aba922fa25f is described below
commit aba922fa25fbd8101588b9d61845d6a6dfbab225
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
```