fixing(Gateway)

This commit is contained in:
stefan
2025-08-13 14:18:59 +02:00
parent 93633b38a7
commit 562eb07be1
21 changed files with 2081 additions and 94 deletions
@@ -30,7 +30,7 @@ class KafkaEventPublisher(
logger.debug("Publishing event to topic '{}' with key '{}', event type: '{}'",
topic, key, event::class.simpleName)
return reactiveKafkaTemplate.send(topic, key, event)
return reactiveKafkaTemplate.send(topic, key ?: "", event)
.doOnSuccess { result ->
val record = result.recordMetadata()
logger.debug(