Skip to content

Commit

Permalink
[Kafka] Remove support for TLS version 1.0 and 1.1 (#3193)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerShor committed Mar 10, 2024
1 parent 1a52e2e commit c4422eb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pkg/processor/trigger/kafka/trigger.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,6 @@ func (k *kafka) newKafkaConfig() (*sarama.Config, error) {

getTLSMinimumVersion := func(version string) uint16 {
switch version {
case "1.0":
return tls.VersionTLS10
case "1.1":
return tls.VersionTLS11
case "1.2":
return tls.VersionTLS12
case "1.3":
Expand Down

0 comments on commit c4422eb

Please sign in to comment.