Skip to content

Commit 6c2ccee

Browse files
committed
Merge branch 'v1.9.0_dev' of ssh://git.dtstack.cn:10022/dtstack/dt-center-flinkStreamSQL into v1.9.0_dev
2 parents 372d55e + ecb563c commit 6c2ccee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/dtstack/flink/sql/environment/StreamEnvConfigManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public static void streamExecutionEnvironmentConfig(StreamExecutionEnvironment s
119119

120120
// checkpoint config
121121
Optional<Boolean> checkpointingEnabled = isCheckpointingEnabled(confProperties);
122-
if (checkpointingEnabled.get()) {
122+
if (!checkpointingEnabled.get()) {
123123
Optional<Long> checkpointInterval = getCheckpointInterval(confProperties);
124124
streamEnv.enableCheckpointing(checkpointInterval.get());
125125

0 commit comments

Comments
 (0)