Skip to content
Snippets Groups Projects
Commit 4d3e91ec authored by Sören Henning's avatar Sören Henning
Browse files

Fix typo

parent dbaf2cbb
No related branches found
No related tags found
1 merge request!90Migrate Flink benchmark implementation
Pipeline #2293 passed
...@@ -13,7 +13,7 @@ import titan.ccp.model.records.ActivePowerRecord; ...@@ -13,7 +13,7 @@ import titan.ccp.model.records.ActivePowerRecord;
/** /**
* The History microservice implemented as a Flink job. * The History microservice implemented as a Flink job.
*/ */
public class HistoryServiceFlinkJob { public final class HistoryServiceFlinkJob {
private static final Logger LOGGER = LoggerFactory.getLogger(HistoryServiceFlinkJob.class); private static final Logger LOGGER = LoggerFactory.getLogger(HistoryServiceFlinkJob.class);
...@@ -24,7 +24,7 @@ public class HistoryServiceFlinkJob { ...@@ -24,7 +24,7 @@ public class HistoryServiceFlinkJob {
/** /**
* Create a new instance of the {@link HistoryServiceFlinkJob}. * Create a new instance of the {@link HistoryServiceFlinkJob}.
*/ */
public final HistoryServiceFlinkJob() { public HistoryServiceFlinkJob() {
final String applicationName = this.config.getString(ConfigurationKeys.APPLICATION_NAME); final String applicationName = this.config.getString(ConfigurationKeys.APPLICATION_NAME);
final String applicationVersion = this.config.getString(ConfigurationKeys.APPLICATION_VERSION); final String applicationVersion = this.config.getString(ConfigurationKeys.APPLICATION_VERSION);
this.applicationId = applicationName + "-" + applicationVersion; this.applicationId = applicationName + "-" + applicationVersion;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment