This is an automated email from the ASF dual-hosted git repository.
dianfu pushed a commit to branch release-1.10
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.10 by this push:
new 3d95391 [FLINK-24137][python] Fix the cases that Python boot process
exits before Python SDK harness connects to the Java Operator in lookback mode
3d95391 is described below
commit 3d95391ca025266debd4149c33c005901a90b66e
Author: Dian Fu <[email protected]>
AuthorDate: Fri Sep 10 10:21:06 2021 +0800
[FLINK-24137][python] Fix the cases that Python boot process exits before
Python SDK harness connects to the Java Operator in lookback mode
This closes #17219.
---
flink-python/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 15b5112..104b692 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -222,7 +222,7 @@ run sdist.
python_requires='>=3.5',
install_requires=['py4j==0.10.8.1', 'python-dateutil==2.8.0',
'apache-beam==2.15.0',
'cloudpickle==1.2.2', 'avro-python3>=1.8.1,<=1.9.1',
- 'pyarrow>=0.11.1,<0.14.0'],
+ 'pyarrow>=0.11.1,<0.14.0', 'requests>=2.26.0'],
tests_require=['pytest==4.4.1'],
description='Apache Flink Python API',
long_description=long_description,