good_job 1.9.2 → 1.9.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: 94f195fb2a3c51544d58216d662caaf7fac989ec7cc5eb1fcb57b25a5e303a9d
4
- data.tar.gz: 20a2b3ffcc844df543809df6bc143cdc1f42885bea28ffb8ec33c02bdf5e7d5b
3
+ metadata.gz: 94f031dce3515297d2fa26803582e006a5787a681e3e2e7d50da00acea09cc27
4
+ data.tar.gz: 4fb166ced6dc815a3784a98d8ec2ae80d3ba843783435c035fadf577c83192a7
5
5
  SHA512:
6
- metadata.gz: b2bb0c8fab29421100400e55959ac2ff95d63e0eec7876277b61d4913eb7f045e660d68ad4638d729e0cb42bbce4f18aea13a3c9e9daffd489659b72404f8d02
7
- data.tar.gz: 2d8a691a8dae96a8154faa3b86e14a0fd25fd3fedaa35a3e5cedb69ac27bc1926eae4a84fcd9dc73f7f91e15eea9295be929346d711651d656c1425adf96b635
6
+ metadata.gz: 294c5bc738d9cf2953be24c0e5e9b3a04890d4861fb75c6e6040bbd49d63da2abf953dac367f92173c49c4e032824d6547f4a6f005bf035086bbd624b2db8405
7
+ data.tar.gz: c12d8e513db1e6c1976aa4e6478005d803f440f2cf75037fee389f111aa07303e539cdcc998a622f49571b78de84261503ee5e71e86b61702ea02bc82cd3e882
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.9.3](https://github.com/bensheldon/good_job/tree/v1.9.3) (2021-05-10)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.9.2...v1.9.3)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Add async\_server detection for extensions of rack handler [\#246](https://github.com/bensheldon/good_job/pull/246) ([bensheldon](https://github.com/bensheldon))
10
+
11
+ **Closed issues:**
12
+
13
+ - Not processing unfinished jobs across server restarts using async\_server mode [\#244](https://github.com/bensheldon/good_job/issues/244)
14
+ - No connection pool for 'ActiveRecord::Base' found [\#236](https://github.com/bensheldon/good_job/issues/236)
15
+
3
16
  ## [v1.9.2](https://github.com/bensheldon/good_job/tree/v1.9.2) (2021-05-10)
4
17
 
5
18
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.9.1...v1.9.2)
@@ -21,7 +34,7 @@
21
34
 
22
35
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.9.0...v1.9.1)
23
36
 
24
- **Merged pull requests:**
37
+ **Implemented enhancements:**
25
38
 
26
39
  - Allow to specify parent class for active record [\#238](https://github.com/bensheldon/good_job/pull/238) ([morgoth](https://github.com/morgoth))
27
40
 
@@ -150,6 +150,7 @@ module GoodJob
150
150
 
151
151
  @_in_server_process = Rails.const_defined?('Server') ||
152
152
  caller.grep(%r{config.ru}).any? || # EXAMPLE: config.ru:3:in `block in <main>' OR config.ru:3:in `new_from_string'
153
+ caller.grep(%{/rack/handler/}).any? || # EXAMPLE: iodine-0.7.44/lib/rack/handler/iodine.rb:13:in `start'
153
154
  (Concurrent.on_jruby? && caller.grep(%r{jruby/rack/rails_booter}).any?) # EXAMPLE: uri:classloader:/jruby/rack/rails_booter.rb:83:in `load_environment'
154
155
  end
155
156
  end
@@ -1,4 +1,4 @@
1
1
  module GoodJob
2
2
  # GoodJob gem version.
3
- VERSION = '1.9.2'.freeze
3
+ VERSION = '1.9.3'.freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: good_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.2
4
+ version: 1.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Sheldon