rimless 0.1.2 → 0.1.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.md +4 -0
- data/lib/rimless/dependencies.rb +2 -2
- data/lib/rimless/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: 62f10b707303cc0acc9d4637243029f12f12483c1b36024ba0493421cac71321
|
|
4
|
+
data.tar.gz: 001a04109810927bed5466032f91c91e053d11a1ea7d6c90b02db39a229b4102
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca56ffbdfa884f4eb04115e87f981ab693f81518d2b0facd0ed3dc59b9c4640af4b38cfcc0f3d5a5431c0c237d3009eba56b77a0b3fc602b19bbaf8baca879c1
|
|
7
|
+
data.tar.gz: bb06f82b5172422f715bbce79a52785344d8fa1deca8beeb698667fb3a2a4bea9ec297462b76c22d394e5dcd2ec30a4f93bd99a177f9e4eb0dc447b9b276f138
|
data/CHANGELOG.md
CHANGED
data/lib/rimless/dependencies.rb
CHANGED
|
@@ -22,7 +22,7 @@ module Rimless
|
|
|
22
22
|
# should be available, otherwise the message producing just
|
|
23
23
|
# fails/raise.
|
|
24
24
|
return if Rimless.configuration.kafka_brokers.empty? \
|
|
25
|
-
||
|
|
25
|
+
|| Rimless.configuration.client_id.blank?
|
|
26
26
|
|
|
27
27
|
WaterDrop.setup do |config|
|
|
28
28
|
# Activate message delivery and use the default logger
|
|
@@ -49,7 +49,7 @@ module Rimless
|
|
|
49
49
|
# available. Its fine to skip this for scenarios where not the full
|
|
50
50
|
# application configuration is available (eg. on Rails asset
|
|
51
51
|
# precompilations, etc)
|
|
52
|
-
return
|
|
52
|
+
return if Rimless.configuration.schema_registry_url.blank?
|
|
53
53
|
|
|
54
54
|
# Setup a global available Apache Avro decoder/encoder with support for
|
|
55
55
|
# the Confluent Schema Registry, but first create a helper instance
|
data/lib/rimless/version.rb
CHANGED