awr / KafkaClient

Native C# client for Kafka
Apache License 2.0
5 stars 2 forks source link

Use ssl transport if url is https #25

Closed awr closed 7 years ago

awr commented 7 years ago

Fall back to default ssl setup if none configured and url specified is in the format http://

ligu commented 7 years ago

I think this is misleading. Actually I would completely remove the whole http/https thing from the server address, because the kafka client-server protocol is not http at all, it's a proprietary binary protocol over tcp sockets.

awr commented 7 years ago

You know ... that's a much better idea!

It was in there before and I just ran with it -- but better to remove the http altogether.