resqued 0.11.1 → 0.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +5 -0
- data/lib/resqued/exec_on_hup.rb +1 -1
- data/lib/resqued/version.rb +1 -1
- data/spec/spec_helper.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa7e64a4c6a3e61fd60ad02aad37062a408ad34515e0218fa4526c7c23bbb296
|
4
|
+
data.tar.gz: 540332007ba6fd7581c795f8114db0638e80390ef18c64d6336eb65ed0afbf92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 402d4c507e5809832e8e05ff3f0e3e243fdb8c3a9378d84e6589147b649b80426b5a934644e10cebc9d467948073e0db8f3771f803ac4befb80d4176233050dc
|
7
|
+
data.tar.gz: 9a51246b791079456dd26faafa988aa9e2994c76bcd7a554b6a4f1c45539d2921604e17ee7be389b089cfd77cbeab60094f1da03c5ef85a19e9fa9de6acd32f9
|
data/CHANGES.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
Starting with version 0.6.1, resqued uses semantic versioning to indicate incompatibilities between the master process, listener process, and configuration.
|
2
2
|
|
3
|
+
v0.11.2
|
4
|
+
-------
|
5
|
+
* Add compatibility with Ruby 3.1. (#63)
|
6
|
+
* Switch to GitHub Actions for CI. (#64)
|
7
|
+
|
3
8
|
v0.11.1
|
4
9
|
-------
|
5
10
|
* Fix a crash during shutdown. (#62)
|
data/lib/resqued/exec_on_hup.rb
CHANGED
@@ -34,7 +34,7 @@ module Resqued
|
|
34
34
|
|
35
35
|
# Internal: Restore the master's state, and remove the state file.
|
36
36
|
def self.restore_state(state, path)
|
37
|
-
data = YAML.safe_load(File.read(path), [Symbol],
|
37
|
+
data = YAML.safe_load(File.read(path), permitted_classes: [Symbol], aliases: true)
|
38
38
|
Resqued::START_CTX.replace(data[:start_ctx] || {})
|
39
39
|
state.restore(data[:state])
|
40
40
|
File.unlink(path) rescue nil
|
data/lib/resqued/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: resqued
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Burke
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: kgio
|
@@ -171,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
171
171
|
- !ruby/object:Gem::Version
|
172
172
|
version: '0'
|
173
173
|
requirements: []
|
174
|
-
rubygems_version: 3.
|
174
|
+
rubygems_version: 3.1.6
|
175
175
|
signing_key:
|
176
176
|
specification_version: 4
|
177
177
|
summary: Daemon of resque workers
|