dynoscale_ruby 1.0.2 → 1.0.3

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: 07ef9352043479ecadcc703ee8b1ca093ac305efd99943c4a473ddfe2cd18e12
4
- data.tar.gz: 43944936c1bdf3a18c36ecdf89692c1d644aa79339d9a94c028cee12f40bf6f0
3
+ metadata.gz: 47759854ca94fb24bcc0c11bb4cf235b09bd027abf24542420c05c8df01d3dcb
4
+ data.tar.gz: 19adb7b1704ba702cc07644e119b9121447db1a37f571a1eb06abc97fb84319b
5
5
  SHA512:
6
- metadata.gz: 6aabed0d63014683ecd7a663ff57be7b4f37d60c14ca82b6596800656f8f22e37658b3f4c3cb5a676a25e8d2d60187b90c366b645fb40ea79bc4750ad978ebd6
7
- data.tar.gz: 4996cfb58220558a12c16d6cce6bd23a36a36e3435cff84f48214892a107dd508e275d8360d594b9a99c25022a66a156ce9d7c3bfb8a9677080860e0a5bf8b7a
6
+ metadata.gz: 7334f837342defdbd850785a60e3d743bac517b616fdda060d3b57d73d25d5741f4eaa396d4ce898bacf391fec795f4acbe4cb2ab4e5dbcb5893c2615b06193a
7
+ data.tar.gz: c83206d6e393aed982ec43a34f48dd1b75c692337acad334ca7cd62b71aa28284d10aa7553b7c7fdea4dda3ebffa9f2bc339d1791ea485fd9d32e84682e7c782
data/README.md CHANGED
@@ -37,6 +37,10 @@ Some blog posts about why Dynoscale is a helpful tool.
37
37
  * [How to setup heroku autoscaling in under 15 minutes?](https://dynoscale.net/blog/how-to-setup-heroku-autoscaling-in-under-15-minutes)
38
38
  * [Level up your Heroku autoscaling in 15 minutes](http://localhost:5008/blog/level-up-your-heroku-autoscaling-in-15-minutes)
39
39
 
40
+ ## Skip Dynoscale Agent
41
+
42
+ In review apps, staging or development environments, set the `SKIP_DYNOSCALE_AGENT` environment variable to disable the scaling agent on all web and worker processes.
43
+
40
44
  ## Contributing
41
45
 
42
46
  Bug reports and pull requests are welcome on GitHub at https://github.com/Mjolnir-Software/dynoscale_ruby.
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  "source_code_uri" => "https://github.com/Mjolnir-Software/dynoscale_ruby",
20
20
  }
21
21
 
22
- spec.version = '1.0.2'
22
+ spec.version = '1.0.3'
23
23
  # Specify which files should be added to the gem when it is released.
24
24
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
25
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
@@ -19,14 +19,15 @@ module DynoscaleRuby
19
19
  end
20
20
 
21
21
  def call(env)
22
+ return @app.call(env) if ENV['SKIP_DYNOSCALE_AGENT']
23
+
22
24
  is_dev = ENV['DYNOSCALE_DEV'] == 'true'
23
25
  dyno = is_dev ? "dev.1" : ENV['DYNO']
24
26
 
25
27
  unless ENV['DYNOSCALE_URL']
26
28
  puts "Missing DYNOSCALE_URL environment variable"
27
29
  return @app.call(env)
28
- end
29
- return @app.call(env) if ENV['SKIP_DYNASCALE_AGENT']
30
+ end
30
31
  return @app.call(env) unless is_dev || ENV['DYNO']&.split(".")&.last == "1"
31
32
 
32
33
  request_calculator = RequestCalculator.new(env)
@@ -6,6 +6,8 @@ module DynoscaleRuby
6
6
  include Singleton
7
7
 
8
8
  def self.enabled?
9
+ return false if ENV['SKIP_DYNOSCALE_AGENT']
10
+
9
11
  require 'resque'
10
12
  require 'resque_latency'
11
13
  true
@@ -29,4 +31,3 @@ module DynoscaleRuby
29
31
  end
30
32
  end
31
33
  end
32
-
@@ -6,6 +6,8 @@ module DynoscaleRuby
6
6
  include Singleton
7
7
 
8
8
  def self.enabled?
9
+ return false if ENV['SKIP_DYNOSCALE_AGENT']
10
+
9
11
  require 'sidekiq/api'
10
12
  true
11
13
  rescue LoadError
@@ -27,4 +29,4 @@ module DynoscaleRuby
27
29
  end
28
30
  end
29
31
  end
30
- end
32
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynoscale_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Abrahamsen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-30 00:00:00.000000000 Z
11
+ date: 2023-08-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: