data_collector 0.39.0 → 0.40.0

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: 05ef65e41068e348fb98f4006fa50917f0d1f36b321193388e506dca9d912a07
4
- data.tar.gz: c711d472ea38bdcb999d1b2ef3701e6b6fc0f7933bac137aa65537decb0d3137
3
+ metadata.gz: 1345f920eefd428837193e35ec9e63d7213deebf4445685bb4c0c1d56c47b3a4
4
+ data.tar.gz: 33380a284a385eb268b2b42fc45e4e082bbb8ccdb7856ab43feef2bf55ff48fd
5
5
  SHA512:
6
- metadata.gz: 6093dea6542e5bb7a01d8149aff449912e606e1d482b0f5cf1d54a6845776592cbf84ee4fda979797aec66ceca00022ecc8e51fbdaf01123c6721aa879961c9b
7
- data.tar.gz: effdc6c09bf03c1d1683e3c95eda047078a9daedd4a31bf350b531b6760921e4a618f5693f07a26faa3ed77039db7ec2c1c622f03b951debfded1ca1fc16377d
6
+ metadata.gz: 17483e3ba00c9a3b137c1f0c6aa0b9655b02d81cd04c45cecc85e657defd21b4681d0f204dad999eb8ba372f2418aca026a0ddb10e62863dfdaf283bfeaaba07
7
+ data.tar.gz: 874443f2821d2a0387547ff7e936d52d2742eab12dd51fb73b67121a3fc332cf7c82a51d574481111fd98ab8ffaed82ec103cec08598aa44a0ef5c183b3c1dd2
@@ -3,27 +3,22 @@ require 'connection_pool'
3
3
  module BunnyBurrow
4
4
  class Connection
5
5
  include Singleton
6
- attr_reader :connection, :started
6
+ attr_reader :connection
7
7
  attr_accessor :verify_peer, :connection_name, :rabbitmq_url
8
8
 
9
- def initialize
10
- super
11
- @started = false
12
- end
13
9
  def connection
14
- @connection ||= Bunny.new(@rabbitmq_url, verify_peer: @verify_peer, connection_name: @connection_name)
15
- unless @started
10
+ unless @connection
11
+ @connection = Bunny.new(@rabbitmq_url, verify_peer: @verify_peer, connection_name: @connection_name)
16
12
  @connection.start
17
- @started = true
18
13
  end
19
14
 
20
15
  @connection
21
16
  end
22
17
 
23
18
  def channel
24
- @channel ||= ConnectionPool::Wrapper.new do
25
- connection.create_channel
26
- end
19
+ @channel ||= connection.create_channel
20
+
21
+ @channel
27
22
  end
28
23
  end
29
24
 
@@ -41,6 +36,7 @@ module BunnyBurrow
41
36
 
42
37
  unless @connection
43
38
  @connection = Connection.instance.connection
39
+ @connection.start unless @connection.open?
44
40
  end
45
41
 
46
42
  @connection
@@ -51,7 +47,7 @@ module BunnyBurrow
51
47
  Connection.instance.verify_peer = @verify_peer
52
48
  Connection.instance.rabbitmq_url = @rabbitmq_url
53
49
 
54
- @channel ||= Connection.instance.channel
50
+ @channel = Connection.instance.channel
55
51
  end
56
52
  end
57
53
  end
@@ -182,7 +182,7 @@ module DataCollector
182
182
  raise "unable to save to file: #{e.message}"
183
183
  end
184
184
 
185
- def to_jsonfile (jsondata, jsonfile)
185
+ def to_jsonfile(jsondata, jsonfile)
186
186
  raise '[DEPRECATED] `to_jsonfile` deprecated. Please use `to_uri("file://abc.json", {template: "template.erb", content_type: "application/json"})` instead'
187
187
  rescue Exception => e
188
188
  raise "unable to save to jsonfile: #{e.message}"
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module DataCollector
3
- VERSION = "0.39.0"
3
+ VERSION = "0.40.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: data_collector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mehmet Celik
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-26 00:00:00.000000000 Z
11
+ date: 2023-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport