delivery_boy 2.0.0.alpha.2 → 2.0.0.alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +0 -1
- data/lib/delivery_boy/instance.rb +3 -4
- data/lib/delivery_boy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2fdee0449d315edbd6447749904bf83761caacfabf2d83b887095842da8438ae
|
|
4
|
+
data.tar.gz: 64988130f830bbb73ecc8f2d6583842fd398cd54499e2b9c2f315e9da6460147
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28049d3f79e2edf8a73656a4746a733a962ee74209dcd03c4cfd93246837cfe3f525543caaeca0851b813e96efc167033092e04d981eb8bcb0e2159c8ce8156a
|
|
7
|
+
data.tar.gz: 3d87ca7cbbbc654675687dc3a9865b95a1d38126a36d15c441d112b653dd1e94c23e69f1bdbacb4b4f45ed51912ebdbd47985709e42ebf20287a29749df801dd
|
data/CHANGELOG
CHANGED
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
The following config options are silently ignored (no error, but no effect):
|
|
32
32
|
* `max_queue_size` - rdkafka manages its own internal queue
|
|
33
33
|
* `ssl_ca_certs_from_system` - no librdkafka equivalent
|
|
34
|
-
* `ssl_verify_hostname` - not mapped to librdkafka
|
|
35
34
|
* `sasl_scram_mechanism` - use `sasl_mechanism` instead
|
|
36
35
|
* `log_level` - rdkafka has its own logging configuration
|
|
37
36
|
|
|
@@ -346,10 +346,9 @@ module DeliveryBoy
|
|
|
346
346
|
"ssl.ca.location": config.ssl_ca_cert_file_path,
|
|
347
347
|
"ssl.certificate.pem": config.ssl_client_cert,
|
|
348
348
|
"ssl.key.pem": config.ssl_client_cert_key,
|
|
349
|
-
"ssl.key.password": config.ssl_client_cert_key_password
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
}.merge(sasl_options)
|
|
349
|
+
"ssl.key.password": config.ssl_client_cert_key_password,
|
|
350
|
+
"enable.ssl.certificate.verification": config.ssl_verify_hostname
|
|
351
|
+
}.merge(sasl_options).compact
|
|
353
352
|
end
|
|
354
353
|
|
|
355
354
|
def handles
|
data/lib/delivery_boy/version.rb
CHANGED