Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
memoriav
Memobase 2020
services
Import Process
XML Data Transform
Commits
e670c321
Commit
e670c321
authored
Mar 19, 2021
by
Jonas Waeber
Browse files
Fix fatal error being forwarded.
parent
4027b61a
Pipeline
#24213
passed with stages
in 4 minutes and 43 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
src/main/kotlin/KafkaTopology.kt
View file @
e670c321
...
...
@@ -158,7 +158,7 @@ class KafkaTopology(private val settings: SettingsLoader) {
private
fun
streamOutput
(
stream
:
KStream
<
String
,
Pair
<
String
?
,
Report
>>)
{
stream
.
filter
{
_
,
value
->
value
!=
nul
l
}
.
filter
{
_
,
value
->
value
.
second
.
status
!=
ReportStatus
.
fata
l
}
.
mapValues
{
value
->
value
.
first
}
.
to
(
settings
.
outputTopic
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment