Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-24199][python] Expose StreamExecutionEnvironment#configure in Python API #17206

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[FLINK-24199][python] Expose StreamExecutionEnvironment#configure in …
…Python API
  • Loading branch information
SteNicholas committed Sep 9, 2021
commit ad1499f27df1ea127d405e32838d1fc7bcdfffe8
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,8 @@ def configure(self, configuration: Configuration):
untouched.

SteNicholas marked this conversation as resolved.
Show resolved Hide resolved
:param configuration: a configuration to read the values from.

.. versionadded:: 1.15.0
"""
self._j_stream_execution_environment.configure(configuration._j_configuration,
SteNicholas marked this conversation as resolved.
Show resolved Hide resolved
get_gateway().jvm.Thread.currentThread()
Expand Down