I'm running some tests for my spring boot app where if the Kafka/zookeepers are not available (as in not resolvable on the network)
I've noticed that currently, the StreamsKafkaClient
just continues to retry it's connection to the unavailable servers, but never actually kills the start-up of the application.
How can I terminate the application if Kafka is unavailable?