good_job 1.9.2 → 1.9.3
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 +4 -4
- data/CHANGELOG.md +14 -1
- data/lib/good_job/adapter.rb +1 -0
- data/lib/good_job/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 94f031dce3515297d2fa26803582e006a5787a681e3e2e7d50da00acea09cc27
|
|
4
|
+
data.tar.gz: 4fb166ced6dc815a3784a98d8ec2ae80d3ba843783435c035fadf577c83192a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
**
|
|
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
|
|
data/lib/good_job/adapter.rb
CHANGED
|
@@ -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
|
data/lib/good_job/version.rb
CHANGED