neetodeploy-autoscale 0.9.0 → 1.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5913f148d9a61709274f497c7af3fc51155bbf5bee2e3d7a875e26176b1210bb
4
- data.tar.gz: 43abafd353ded35fcd89ba38c29cd3b892ac240470577b088b7d4210dc673eef
3
+ metadata.gz: cc7cefdb46ea98797e01a08b072dd32cf2a1157833b1d3ee102e6609a3931bc5
4
+ data.tar.gz: a4d797d550f3c28343b119502846fa1e8eabe7401b9c6f342bcf607a51b2f04b
5
5
  SHA512:
6
- metadata.gz: 6955cc1a81aff7b522e0c59362e6dc286f8b3a3d0fe77d836d4f4d479715fd6b8eef8356ae459610922182f4f6d4ec107c96c190fd18e62903b625a225e3917b
7
- data.tar.gz: 0b85b705c7d514f7cb1775c8f3aadb9f4a43031fc2804cf4af88c50007f313a218a120722db59ac1275b81cb6e154ff10b697fb25e8626c02f6f25f08d0ee525
6
+ metadata.gz: ceb234f4498a4b0e8b3f508a98476413940d01c530f85e29ff38445acf3c0897738e200b89e0453abc7358c32752dca9b9d4f2a42212d1e9f40357682d4161ed
7
+ data.tar.gz: ca87411a5fae1827f9a6e5168069279bd97d694a9f062dc02f7f554da9826249ab4f96a641f5e5e1090e4e5911bf5b12e99fe5f9d9a7eb0f5e705eef4ee0a10d
@@ -19,8 +19,12 @@ module Neetodeploy
19
19
  post = Net::HTTP::Post.new(url)
20
20
  post["AuthToken"] = "K0An3O3MSyEEMTCnRd1IHgGjdGQkzy"
21
21
 
22
- Net::HTTP.start(url.host, url.port, use_ssl: true) do |http|
23
- http.request(post)
22
+ begin
23
+ Net::HTTP.start(url.host, url.port, use_ssl: true) do |http|
24
+ http.request(post)
25
+ end
26
+ rescue e
27
+ puts "Exception in sending post request to exporter from Rails process: #{e.message}"
24
28
  end
25
29
 
26
30
  @app.call(env)
@@ -21,8 +21,13 @@ module Neetodeploy
21
21
  url.query = query_params
22
22
  post = Net::HTTP::Post.new(url)
23
23
  post["AuthToken"] = "K0An3O3MSyEEMTCnRd1IHgGjdGQkzy"
24
- Net::HTTP.start(url.host, url.port, use_ssl: true) do |http|
25
- http.request(post)
24
+
25
+ begin
26
+ Net::HTTP.start(url.host, url.port, use_ssl: true) do |http|
27
+ http.request(post)
28
+ end
29
+ rescue e
30
+ puts "Exception in sending post request to exporter from Sidekiq process: #{e.message}"
26
31
  end
27
32
  end
28
33
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Neetodeploy
4
4
  module Autoscale
5
- VERSION = "0.9.0"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neetodeploy-autoscale
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sreeram Venkitesh
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-27 00:00:00.000000000 Z
11
+ date: 2024-06-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: For automatically scaling your Rails application based on network metrics
14
14
  email: