good_job 2.3.0 → 2.3.1
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 +9 -0
- data/lib/good_job/scheduler.rb +1 -1
- data/lib/good_job/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d37e613a1bbc15da2a5245b19443a220a49d69e49abd616ceb34f25bfea0ecc
|
|
4
|
+
data.tar.gz: ab189fd086ad548dfaf0c71c39f30d9fd07a1c7fc72c3764794365ce69b027b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: add7f07d52a89171eecad11d31e3bf1f504ec72522a6f093204ee6bad8ec32a3cfa802f5d86394b5d98980ce74d3e333ef6d0a513871f4af38b782a0cffee625
|
|
7
|
+
data.tar.gz: ddc8d64f20a5060512814676c07e647adf2711a3b1bcd0b1bfc8c8527841c9e2b1bea87a25b8e93e6b80176159d3c5fd65f54d1fa77b44e4baf1bf48fae6dc1f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v2.3.1](https://github.com/bensheldon/good_job/tree/v2.3.1) (2021-09-30)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.3.0...v2.3.1)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- Log Cleanup thread tests, introduce "Slow" ExampleJob type, refactor ExampleJob types, run cron and log Postgres warnings in GoodJob Development harness [\#390](https://github.com/bensheldon/good_job/pull/390) ([bensheldon](https://github.com/bensheldon))
|
|
10
|
+
- Wrap Scheduler task execution with Rails `reloader` instead of `executor` to avoid database connection changing during code reload [\#389](https://github.com/bensheldon/good_job/pull/389) ([bensheldon](https://github.com/bensheldon))
|
|
11
|
+
|
|
3
12
|
## [v2.3.0](https://github.com/bensheldon/good_job/tree/v2.3.0) (2021-09-25)
|
|
4
13
|
|
|
5
14
|
[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.2.0...v2.3.0)
|
data/lib/good_job/scheduler.rb
CHANGED
|
@@ -230,7 +230,7 @@ module GoodJob # :nodoc:
|
|
|
230
230
|
# @return [void]
|
|
231
231
|
def create_task(delay = 0)
|
|
232
232
|
future = Concurrent::ScheduledTask.new(delay, args: [performer], executor: executor, timer_set: timer_set) do |thr_performer|
|
|
233
|
-
Rails.application.
|
|
233
|
+
Rails.application.reloader.wrap do
|
|
234
234
|
thr_performer.next
|
|
235
235
|
end
|
|
236
236
|
end
|
data/lib/good_job/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: good_job
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Sheldon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-09-
|
|
11
|
+
date: 2021-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activejob
|