Skip to content

Commit

Permalink
[FLINK-2429] [streaming] Deprecate the "enableCheckpointing()" method…
Browse files Browse the repository at this point in the history
… with no interval argument.

This closes apache#1382
  • Loading branch information
StephanEwen committed Nov 23, 2015
1 parent 1600fe2 commit 68a69c7
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,10 @@ public StreamExecutionEnvironment enableCheckpointing(long interval, Checkpointi
* the moment. For that reason, iterative jobs will not be started if used
* with enabled checkpointing. To override this mechanism, use the
* {@link #enableCheckpointing(long, CheckpointingMode, boolean)} method.</p>
*
* @deprecated Use {@link #enableCheckpointing(long)} instead.
*/
@Deprecated
public StreamExecutionEnvironment enableCheckpointing() {
enableCheckpointing(500, CheckpointingMode.EXACTLY_ONCE);
return this;
Expand Down

0 comments on commit 68a69c7

Please sign in to comment.