kafka-client
kafka-client copied to clipboard
TLS options is not correctly handled
Hi,
Even if there is TLS options available in kafka.ConsumerConfig
. It's not taken into account for sarama config.
This requires a patch in newConsumerBuilder
and buildOptions
function:
`if config.TLSConfig != nil {
opts.TLSConfig = config.TLSConfig
}
`