kafkr 0.5.6 → 0.5.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 916ae5ff763b93c94e0e76ff62bb7026eb82e40570033ba05574d6c88d414568
4
- data.tar.gz: f00ba9eb63a20bbbeadd9c64845131517c3866160f4ef2b5f73bf90ebc17a5c5
3
+ metadata.gz: 61f0dfd7c65259a4684880f7a1ba6f7749f95de46e4eee8faf4b6d629604f3d2
4
+ data.tar.gz: e8ca8789b46ea257d93381e54b4ae8ad343e38fbf16bae276527f1abc3128867
5
5
  SHA512:
6
- metadata.gz: 9a22fddb509c7ffe907650bb5150bee4f7288c9b091af583c8668937b60bf1299059839a2b2d154ff0f11f22b2192f9495313c7d62a60abbdb6343f92148f12e
7
- data.tar.gz: dc9afae5d45522f79422ae4b03b0fcb3cb5a64e4cfa7ff1a311aa827be662e7cf4698a87be115c748f66513000750b14072838c95378acdd269a591f9d2d5aa1
6
+ metadata.gz: 882d352ee426b9ea072d70cefa25502fcb56a616672ddae678f7f7390a6958f40657bd53cd05f4921717b46ac3129bb95bd996c5a5998c491d1673c5c0cac6a3
7
+ data.tar.gz: 711faef688da9ec89affd06f51e8b7a57af39e37a9e214425e3a15e1bf755852e754e1188445f831eaa4e785c4cf583ae3863c73599325b64c0f4672efc0e225
@@ -163,8 +163,7 @@ module Kafkr
163
163
  def listen_for(message, send_message)
164
164
  attempt = 0
165
165
  begin
166
- socket = TCPSocket.new( Consumer.configuration.host, Consumer.configuration.port)
167
- puts "Connected to server. #{Consumer.configuration.host} #{Consumer.configuration.port} " if attempt == 0
166
+ socket = TCPSocket.new( Consumer.configuration.host, Consumer.configuration.port)
168
167
  attempt = 0
169
168
 
170
169
  Timeout.timeout(20) do
@@ -207,7 +206,6 @@ module Kafkr
207
206
  attempt = 0
208
207
  loop do
209
208
  socket = TCPSocket.new(Consumer.configuration.host, Consumer.configuration.port)
210
- puts "Connected to server. #{Consumer.configuration.host} #{Consumer.configuration.port} " if attempt == 0
211
209
  attempt = 0
212
210
 
213
211
  loop do
data/lib/kafkr/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kafkr
4
- VERSION = "0.5.6"
4
+ VERSION = "0.5.7"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kafkr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.6
4
+ version: 0.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delaney Kuldvee Burke