Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!21
fix not setting application name in the use case applications
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
fix not setting application name in the use case applications
stu202077/theodolite:fix/applicationNameCrash
into
master
Overview
1
Commits
1
Pipelines
0
Changes
9
Merged
fix not setting application name in the use case applications
Björn Vonheiden
requested to merge
stu202077/theodolite:fix/applicationNameCrash
into
master
Jun 9, 2020
Overview
1
Commits
1
Pipelines
0
Changes
9
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
cad8becf
1 commit,
Jun 9, 2020
9 files
+
35
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
uc2-application/src/main/java/theodolite/uc2/application/AggregationService.java
+
2
−
0
View file @ cad8becf
Edit in single-file editor
Open in Web IDE
Show full file
@@ -46,6 +46,8 @@ public class AggregationService {
// Configuration of the stream application
final
KafkaStreams
kafkaStreams
=
uc2KafkaStreamsBuilder
.
applicationName
(
this
.
config
.
getString
(
ConfigurationKeys
.
APPLICATION_NAME
))
.
applicationVersion
(
this
.
config
.
getString
(
ConfigurationKeys
.
APPLICATION_VERSION
))
.
bootstrapServers
(
this
.
config
.
getString
(
ConfigurationKeys
.
KAFKA_BOOTSTRAP_SERVERS
))
.
numThreads
(
this
.
config
.
getInt
(
ConfigurationKeys
.
NUM_THREADS
))
.
commitIntervalMs
(
this
.
config
.
getInt
(
ConfigurationKeys
.
COMMIT_INTERVAL_MS
))
Loading