[
https://issues.apache.org/jira/browse/FLINK-5167?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Fabian Hueske closed FLINK-5167.
--------------------------------
Resolution: Won't Fix
The changes would break the public, stable API and can therefore not be done.
> StreamExecutionEnvironment's set function return `this` instead of void
> -----------------------------------------------------------------------
>
> Key: FLINK-5167
> URL: https://issues.apache.org/jira/browse/FLINK-5167
> Project: Flink
> Issue Type: Bug
> Components: DataStream API
> Reporter: shijinkui
>
> for example :
> public void setNumberOfExecutionRetries(int numberOfExecutionRetries) {
> config.setNumberOfExecutionRetries(numberOfExecutionRetries);
> }
> change to:
> public StreamExecutionEnvironment setNumberOfExecutionRetries(int
> numberOfExecutionRetries) {
> config.setNumberOfExecutionRetries(numberOfExecutionRetries);
> return this;
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)