From 0bfa08bd59be9d4414ea44ffc5bb7659e16b5c49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Thu, 24 Mar 2022 11:59:14 +0100 Subject: [PATCH] Fix typos --- .../rocks/theodolite/benchmarks/commons/beam/BeamService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theodolite-benchmarks/beam-commons/src/main/java/rocks/theodolite/benchmarks/commons/beam/BeamService.java b/theodolite-benchmarks/beam-commons/src/main/java/rocks/theodolite/benchmarks/commons/beam/BeamService.java index 607f591ff..0165fa644 100644 --- a/theodolite-benchmarks/beam-commons/src/main/java/rocks/theodolite/benchmarks/commons/beam/BeamService.java +++ b/theodolite-benchmarks/beam-commons/src/main/java/rocks/theodolite/benchmarks/commons/beam/BeamService.java @@ -74,13 +74,13 @@ public class BeamService { if (this.pipelineResult == null) { throw new IllegalStateException("Cannot stop service since it has never been started."); } - LOGGER.info("Stoping Beam pipeline."); + LOGGER.info("Stopping Beam pipeline."); try { this.pipelineResult.cancel(); this.pipelineResult = null; // NOPMD use null to indicate absence } catch (final IOException e) { throw new IllegalStateException( - "Stoping the service failed due to failed stop of Beam pipeline.", e); + "Stopping the service failed due to failed stop of Beam pipeline.", e); } LOGGER.info("Shutdown of Beam service {} complete.", this.applicationName); } -- GitLab