From 75a365dc6fa0374d7e4b967dd89e72e9c218b198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Sat, 26 Nov 2022 16:30:25 +0100 Subject: [PATCH] Fix a log statement --- .../benchmarks/commons/flink/AbstractFlinkService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theodolite-benchmarks/flink-commons/src/main/java/rocks/theodolite/benchmarks/commons/flink/AbstractFlinkService.java b/theodolite-benchmarks/flink-commons/src/main/java/rocks/theodolite/benchmarks/commons/flink/AbstractFlinkService.java index 662692c73..03e797886 100644 --- a/theodolite-benchmarks/flink-commons/src/main/java/rocks/theodolite/benchmarks/commons/flink/AbstractFlinkService.java +++ b/theodolite-benchmarks/flink-commons/src/main/java/rocks/theodolite/benchmarks/commons/flink/AbstractFlinkService.java @@ -61,7 +61,7 @@ public abstract class AbstractFlinkService { protected void configureCheckpointing() { final boolean checkpointing = this.config.getBoolean(ConfigurationKeys.CHECKPOINTING, true); final int commitIntervalMs = this.config.getInt(ConfigurationKeys.CHECKPOINTING_INTERVAL_MS); - LOGGER.info("Set parallelism to: {}.", checkpointing); + LOGGER.info("Set checkpointing to: {}.", checkpointing); if (checkpointing) { this.env.enableCheckpointing(commitIntervalMs); } -- GitLab