You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privatevar producersFlow:Flow<KafkaProducer<String, ByteArray>> = kafkaProducer( // TODO Deprecated
44
51
ProducerSettings(
45
52
bootstrapServers = kafka.bootstrapServers,
46
53
keyDeserializer =StringSerializer(),
@@ -60,12 +67,19 @@ class FailedMessageKafkaHandler(
60
67
)
61
68
).receive(kafkaErrorQueue.topic)
62
69
63
-
suspendfunsend(record:ReceiverRecord<String, ByteArray>, key:String = record.key(), value:ByteArray = record.value()) {// TODO man trenger vel ikke egentlig value og key om man har record?
64
-
record.addHeader(RETRY_AFTER, getNextRetryTime(record))// TODO add retry logic
0 commit comments