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
I'm using smallrye reactive messaging with kafka and have a connection configured without a topic name. This is because I want to send messages to dynamic topics at runtime. My config looks like this
and I send messages with an Emitter by adding an OutgoingKafkaRecordMetadata object with the desired topic name.
I now wanted to use the kafka health checks and noticed that the "events" connector is shown as DOWN because its topic cannot be found. However, I never specified a topic.
Unfortunately, the default topic is the channel name. So it means that I can't distinguish this case.
However, I can add a specific attribute to disable the readiness health check. Would it be ok?
I'm using smallrye reactive messaging with kafka and have a connection configured without a topic name. This is because I want to send messages to dynamic topics at runtime. My config looks like this
and I send messages with an
Emitter
by adding anOutgoingKafkaRecordMetadata
object with the desired topic name.I now wanted to use the kafka health checks and noticed that the "events" connector is shown as
DOWN
because its topic cannot be found. However, I never specified a topic.I think this check shouldn't/cannot be done if no topic name is set.
The text was updated successfully, but these errors were encountered: