summaryrefslogtreecommitdiff
path: root/src/main/kotlin/dev/dnpm/etl/processor
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2026-03-02 15:39:59 +0100
committerPaul-Christian Volkmer2026-03-02 15:39:59 +0100
commit81c75221f7a8d2dcb827cf26ee4222b14b53030e (patch)
tree4c366b3b95220a2463d9ac07b95e1305802192eb /src/main/kotlin/dev/dnpm/etl/processor
parentd72f0f75bc32426957c4fe639e8b02e6c85b0b6f (diff)
chore: do not log unknown response
This is default behavior for async Kafka messaging
Diffstat (limited to 'src/main/kotlin/dev/dnpm/etl/processor')
-rw-r--r--src/main/kotlin/dev/dnpm/etl/processor/services/RequestProcessor.kt1
-rw-r--r--src/main/kotlin/dev/dnpm/etl/processor/services/ResponseProcessor.kt1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/dev/dnpm/etl/processor/services/RequestProcessor.kt b/src/main/kotlin/dev/dnpm/etl/processor/services/RequestProcessor.kt
index 8713f06..b14d6f4 100644
--- a/src/main/kotlin/dev/dnpm/etl/processor/services/RequestProcessor.kt
+++ b/src/main/kotlin/dev/dnpm/etl/processor/services/RequestProcessor.kt
@@ -272,4 +272,5 @@ class RequestProcessor(
.replace("=", "")
.lowercase())
}
+
}
diff --git a/src/main/kotlin/dev/dnpm/etl/processor/services/ResponseProcessor.kt b/src/main/kotlin/dev/dnpm/etl/processor/services/ResponseProcessor.kt
index 190cefe..3ecac71 100644
--- a/src/main/kotlin/dev/dnpm/etl/processor/services/ResponseProcessor.kt
+++ b/src/main/kotlin/dev/dnpm/etl/processor/services/ResponseProcessor.kt
@@ -75,7 +75,6 @@ class ResponseProcessor(
}
else -> {
- logger.error("Cannot process response: Unknown response!")
return@ifPresentOrElse
}
}