summaryrefslogtreecommitdiff
path: root/src/main/kotlin/dev/dnpm/etl/processor
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-05-06 10:03:36 +0200
committerPaul-Christian Volkmer2024-05-06 10:03:36 +0200
commit26b2f65e671bcf3d01d13c3abb170fa073eb6caf (patch)
tree5c251fbc181101658e6a6bed2dd4ebce3a34ad37 /src/main/kotlin/dev/dnpm/etl/processor
parente863269a429c8a8fe897691b0b69034d780b83b8 (diff)
chore: remove println
Diffstat (limited to 'src/main/kotlin/dev/dnpm/etl/processor')
-rw-r--r--src/main/kotlin/dev/dnpm/etl/processor/web/StatisticsRestController.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/kotlin/dev/dnpm/etl/processor/web/StatisticsRestController.kt b/src/main/kotlin/dev/dnpm/etl/processor/web/StatisticsRestController.kt
index 1877d4e..c034cb4 100644
--- a/src/main/kotlin/dev/dnpm/etl/processor/web/StatisticsRestController.kt
+++ b/src/main/kotlin/dev/dnpm/etl/processor/web/StatisticsRestController.kt
@@ -134,7 +134,6 @@ class StatisticsRestController(
@GetMapping(path = ["events"], produces = [MediaType.TEXT_EVENT_STREAM_VALUE])
fun updater(): Flux<ServerSentEvent<Any>> {
return statisticsUpdateProducer.asFlux().flatMap {
- println(it)
Flux.fromIterable(
listOf(
ServerSentEvent.builder<Any>()