Skip to content

Commit 48b16ee

Browse files
authored
Merge pull request #828 from lairen/verify-hostname
Make verify_hostname settable for ssl contexts
2 parents eb81817 + c352cd7 commit 48b16ee

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -952,6 +952,8 @@ This configures the store to look up CA certificates from the system default cer
952952

953953
In order to authenticate the client to the cluster, you need to pass in a certificate and key created for the client and trusted by the brokers.
954954

955+
**NOTE**: You can disable hostname validation by passing `verify_hostname: false`.
956+
955957
```ruby
956958
kafka = Kafka.new(
957959
["kafka1:9092"],

lib/kafka/client.rb

+4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ class Client
6565
# @param sasl_oauth_token_provider [Object, nil] OAuthBearer Token Provider instance that
6666
# implements method token. See {Sasl::OAuth#initialize}
6767
#
68+
# @param verify_hostname [Boolean, true] whether to verify that the host serving
69+
# the SSL certificate and the signing chain of the certificate have the correct domains
70+
# based on the CA certificate
71+
#
6872
# @return [Client]
6973
def initialize(seed_brokers:, client_id: "ruby-kafka", logger: nil, connect_timeout: nil, socket_timeout: nil,
7074
ssl_ca_cert_file_path: nil, ssl_ca_cert: nil, ssl_client_cert: nil, ssl_client_cert_key: nil,

lib/kafka/ssl_context.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,12 @@ def self.build(ca_cert_file_path: nil, ca_cert: nil, client_cert: nil, client_ce
5454
store.set_default_paths
5555
end
5656
ssl_context.cert_store = store
57-
ssl_context.verify_mode = OpenSSL::SSL::VERIFY_PEER
58-
# Verify certificate hostname if supported (ruby >= 2.4.0)
59-
ssl_context.verify_hostname = verify_hostname if ssl_context.respond_to?(:verify_hostname=)
6057
end
6158

59+
ssl_context.verify_mode = OpenSSL::SSL::VERIFY_PEER
60+
# Verify certificate hostname if supported (ruby >= 2.4.0)
61+
ssl_context.verify_hostname = verify_hostname if ssl_context.respond_to?(:verify_hostname=)
62+
6263
ssl_context
6364
end
6465
end

0 commit comments

Comments
 (0)