kafka-client icon indicating copy to clipboard operation
kafka-client copied to clipboard

TLS options is not correctly handled

Open Gillani0 opened this issue 5 years ago • 0 comments

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
       }
`

Gillani0 avatar Oct 03 '19 13:10 Gillani0