sidekiq 6.0.7 → 6.1.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sidekiq might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.circleci/config.yml +13 -2
- data/Changes.md +18 -0
- data/Ent-Changes.md +14 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +91 -91
- data/Pro-Changes.md +11 -3
- data/README.md +2 -5
- data/bin/sidekiq +7 -2
- data/lib/sidekiq.rb +4 -2
- data/lib/sidekiq/api.rb +1 -1
- data/lib/sidekiq/cli.rb +10 -2
- data/lib/sidekiq/client.rb +15 -10
- data/lib/sidekiq/extensions/active_record.rb +3 -2
- data/lib/sidekiq/extensions/class_methods.rb +5 -4
- data/lib/sidekiq/fetch.rb +20 -18
- data/lib/sidekiq/launcher.rb +3 -2
- data/lib/sidekiq/manager.rb +3 -3
- data/lib/sidekiq/processor.rb +4 -4
- data/lib/sidekiq/rails.rb +16 -18
- data/lib/sidekiq/redis_connection.rb +15 -12
- data/lib/sidekiq/sd_notify.rb +1 -1
- data/lib/sidekiq/testing.rb +1 -1
- data/lib/sidekiq/version.rb +1 -1
- data/lib/sidekiq/web.rb +15 -7
- data/lib/sidekiq/web/csrf_protection.rb +153 -0
- data/lib/sidekiq/web/helpers.rb +3 -6
- data/lib/sidekiq/web/router.rb +1 -1
- data/lib/sidekiq/worker.rb +2 -5
- data/sidekiq.gemspec +1 -2
- data/web/assets/javascripts/application.js +2 -2
- data/web/assets/stylesheets/application-dark.css +15 -4
- data/web/assets/stylesheets/application.css +5 -0
- data/web/locales/pl.yml +4 -4
- metadata +6 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e22aedd56d4f0b3a30fc73ceec6d246813b1b7e2f233dc2e19fe435c1689abd8
|
4
|
+
data.tar.gz: 8beb1e49cc43aa6f179f72cbd191832151facb48f01d67b4b6c979aa63cbbf1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ad1d321a4e319cf7760f0984085c635cb98fd9aef600665bf90b7a301caa53e9d9fb42dc064196e083d115fd6719eaa1445263c32e4906c6c9de4789970c9e0
|
7
|
+
data.tar.gz: 4a4e5d184b7ba0cd8dcba3f27b8dc7ec65138ba1b34cd5414e2e6610f9a590c9bcae09940d96b960deb9db3d25b7b0314b1ff0c630b877e10ae2461b6fe645be
|
data/.circleci/config.yml
CHANGED
@@ -3,7 +3,7 @@ references:
|
|
3
3
|
unit: &unit
|
4
4
|
run:
|
5
5
|
name: Run test suite
|
6
|
-
command: bundle exec rake
|
6
|
+
command: bundle exec rake COVERAGE=1
|
7
7
|
restore: &restore
|
8
8
|
restore_cache:
|
9
9
|
keys:
|
@@ -34,7 +34,17 @@ jobs:
|
|
34
34
|
"ruby-2.6":
|
35
35
|
docker:
|
36
36
|
- image: circleci/ruby:2.6
|
37
|
-
- image: circleci/redis:
|
37
|
+
- image: circleci/redis:5.0
|
38
|
+
steps:
|
39
|
+
- checkout
|
40
|
+
- <<: *restore
|
41
|
+
- <<: *bundle
|
42
|
+
- <<: *save
|
43
|
+
- <<: *unit
|
44
|
+
"ruby-2.7":
|
45
|
+
docker:
|
46
|
+
- image: circleci/ruby:2.7
|
47
|
+
- image: circleci/redis:6.0
|
38
48
|
steps:
|
39
49
|
- checkout
|
40
50
|
- <<: *restore
|
@@ -58,3 +68,4 @@ workflows:
|
|
58
68
|
jobs:
|
59
69
|
- "ruby-2.5"
|
60
70
|
- "ruby-2.6"
|
71
|
+
- "ruby-2.7"
|
data/Changes.md
CHANGED
@@ -2,6 +2,18 @@
|
|
2
2
|
|
3
3
|
[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
|
4
4
|
|
5
|
+
HEAD
|
6
|
+
---------
|
7
|
+
|
8
|
+
- Web UI - Dark Mode fixes [#4543, natematykiewicz]
|
9
|
+
- Ensure `Rack::ContentLength` is loaded as middleware for correct Web UI responses [#4541]
|
10
|
+
- Avoid exception dumping SSL store in Redis connection logging [#4532]
|
11
|
+
- Better error messages in Sidekiq::Client [#4549]
|
12
|
+
- Remove rack-protection, reimplement CSRF protection [#4588]
|
13
|
+
- Require redis-rb 4.2 [#4591]
|
14
|
+
- Update to jquery 1.12.4 [#4593]
|
15
|
+
- Refactor internal fetch logic and API [#4602]
|
16
|
+
|
5
17
|
6.0.7
|
6
18
|
---------
|
7
19
|
|
@@ -160,6 +172,12 @@ See the [Logging wiki page](https://github.com/mperham/sidekiq/wiki/Logging) for
|
|
160
172
|
- Integrate the StandardRB code formatter to ensure consistent code
|
161
173
|
styling. [#4114, gearnode]
|
162
174
|
|
175
|
+
5.2.9
|
176
|
+
---------
|
177
|
+
|
178
|
+
- Release Rack lock due to a cascade of CVEs. [#4566]
|
179
|
+
Pro-tip: don't lock Rack.
|
180
|
+
|
163
181
|
5.2.8
|
164
182
|
---------
|
165
183
|
|
data/Ent-Changes.md
CHANGED
@@ -2,7 +2,20 @@
|
|
2
2
|
|
3
3
|
[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
|
4
4
|
|
5
|
-
Please see [
|
5
|
+
Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy.
|
6
|
+
|
7
|
+
2.1.0
|
8
|
+
-------------
|
9
|
+
|
10
|
+
- Move historical metrics to use tags rather than interpolating name [#4377]
|
11
|
+
```
|
12
|
+
sidekiq.enqueued.#{name} -> sidekiq.queue.size with tag queue:#{name}
|
13
|
+
sidekiq.latency.#{name} -> sidekiq.queue.latency with tag queue:#{name}
|
14
|
+
```
|
15
|
+
- Remove `concurrent-ruby` gem dependency [#4586]
|
16
|
+
- Add systemd `Type=notify` support for swarm [#4511]
|
17
|
+
- Length swarm's boot timeout to 60 sec [#4544]
|
18
|
+
- Add NL locale
|
6
19
|
|
7
20
|
2.0.1
|
8
21
|
-------------
|
data/Gemfile
CHANGED
@@ -11,10 +11,10 @@ gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
|
|
11
11
|
group :test do
|
12
12
|
gem "minitest"
|
13
13
|
gem "simplecov"
|
14
|
+
gem "codecov", require: false
|
14
15
|
end
|
15
16
|
|
16
17
|
group :development, :test do
|
17
|
-
gem "pry-byebug", platforms: :mri
|
18
18
|
gem "standard"
|
19
19
|
end
|
20
20
|
|
data/Gemfile.lock
CHANGED
@@ -1,81 +1,82 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
sidekiq (6.0
|
4
|
+
sidekiq (6.1.0)
|
5
5
|
connection_pool (>= 2.2.2)
|
6
6
|
rack (~> 2.0)
|
7
|
-
|
8
|
-
redis (>= 4.1.0)
|
7
|
+
redis (>= 4.2.0)
|
9
8
|
|
10
9
|
GEM
|
11
10
|
remote: https://rubygems.org/
|
12
11
|
specs:
|
13
|
-
actioncable (6.0.
|
14
|
-
actionpack (= 6.0.
|
12
|
+
actioncable (6.0.3.1)
|
13
|
+
actionpack (= 6.0.3.1)
|
15
14
|
nio4r (~> 2.0)
|
16
15
|
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailbox (6.0.
|
18
|
-
actionpack (= 6.0.
|
19
|
-
activejob (= 6.0.
|
20
|
-
activerecord (= 6.0.
|
21
|
-
activestorage (= 6.0.
|
22
|
-
activesupport (= 6.0.
|
16
|
+
actionmailbox (6.0.3.1)
|
17
|
+
actionpack (= 6.0.3.1)
|
18
|
+
activejob (= 6.0.3.1)
|
19
|
+
activerecord (= 6.0.3.1)
|
20
|
+
activestorage (= 6.0.3.1)
|
21
|
+
activesupport (= 6.0.3.1)
|
23
22
|
mail (>= 2.7.1)
|
24
|
-
actionmailer (6.0.
|
25
|
-
actionpack (= 6.0.
|
26
|
-
actionview (= 6.0.
|
27
|
-
activejob (= 6.0.
|
23
|
+
actionmailer (6.0.3.1)
|
24
|
+
actionpack (= 6.0.3.1)
|
25
|
+
actionview (= 6.0.3.1)
|
26
|
+
activejob (= 6.0.3.1)
|
28
27
|
mail (~> 2.5, >= 2.5.4)
|
29
28
|
rails-dom-testing (~> 2.0)
|
30
|
-
actionpack (6.0.
|
31
|
-
actionview (= 6.0.
|
32
|
-
activesupport (= 6.0.
|
29
|
+
actionpack (6.0.3.1)
|
30
|
+
actionview (= 6.0.3.1)
|
31
|
+
activesupport (= 6.0.3.1)
|
33
32
|
rack (~> 2.0, >= 2.0.8)
|
34
33
|
rack-test (>= 0.6.3)
|
35
34
|
rails-dom-testing (~> 2.0)
|
36
35
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
-
actiontext (6.0.
|
38
|
-
actionpack (= 6.0.
|
39
|
-
activerecord (= 6.0.
|
40
|
-
activestorage (= 6.0.
|
41
|
-
activesupport (= 6.0.
|
36
|
+
actiontext (6.0.3.1)
|
37
|
+
actionpack (= 6.0.3.1)
|
38
|
+
activerecord (= 6.0.3.1)
|
39
|
+
activestorage (= 6.0.3.1)
|
40
|
+
activesupport (= 6.0.3.1)
|
42
41
|
nokogiri (>= 1.8.5)
|
43
|
-
actionview (6.0.
|
44
|
-
activesupport (= 6.0.
|
42
|
+
actionview (6.0.3.1)
|
43
|
+
activesupport (= 6.0.3.1)
|
45
44
|
builder (~> 3.1)
|
46
45
|
erubi (~> 1.4)
|
47
46
|
rails-dom-testing (~> 2.0)
|
48
47
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (6.0.
|
50
|
-
activesupport (= 6.0.
|
48
|
+
activejob (6.0.3.1)
|
49
|
+
activesupport (= 6.0.3.1)
|
51
50
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.0.
|
53
|
-
activesupport (= 6.0.
|
54
|
-
activerecord (6.0.
|
55
|
-
activemodel (= 6.0.
|
56
|
-
activesupport (= 6.0.
|
51
|
+
activemodel (6.0.3.1)
|
52
|
+
activesupport (= 6.0.3.1)
|
53
|
+
activerecord (6.0.3.1)
|
54
|
+
activemodel (= 6.0.3.1)
|
55
|
+
activesupport (= 6.0.3.1)
|
57
56
|
activerecord-jdbc-adapter (60.1-java)
|
58
57
|
activerecord (~> 6.0.0)
|
59
58
|
activerecord-jdbcsqlite3-adapter (60.1-java)
|
60
59
|
activerecord-jdbc-adapter (= 60.1)
|
61
60
|
jdbc-sqlite3 (~> 3.8, < 3.30)
|
62
|
-
activestorage (6.0.
|
63
|
-
actionpack (= 6.0.
|
64
|
-
activejob (= 6.0.
|
65
|
-
activerecord (= 6.0.
|
61
|
+
activestorage (6.0.3.1)
|
62
|
+
actionpack (= 6.0.3.1)
|
63
|
+
activejob (= 6.0.3.1)
|
64
|
+
activerecord (= 6.0.3.1)
|
66
65
|
marcel (~> 0.3.1)
|
67
|
-
activesupport (6.0.
|
66
|
+
activesupport (6.0.3.1)
|
68
67
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
69
68
|
i18n (>= 0.7, < 2)
|
70
69
|
minitest (~> 5.1)
|
71
70
|
tzinfo (~> 1.1)
|
72
|
-
zeitwerk (~> 2.2)
|
73
|
-
ast (2.4.
|
71
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
72
|
+
ast (2.4.1)
|
74
73
|
builder (3.2.4)
|
75
|
-
|
76
|
-
|
74
|
+
codecov (0.1.17)
|
75
|
+
json
|
76
|
+
simplecov
|
77
|
+
url
|
77
78
|
concurrent-ruby (1.1.6)
|
78
|
-
connection_pool (2.2.
|
79
|
+
connection_pool (2.2.3)
|
79
80
|
crass (1.0.6)
|
80
81
|
docile (1.3.2)
|
81
82
|
erubi (1.9.0)
|
@@ -85,10 +86,10 @@ GEM
|
|
85
86
|
hiredis (0.6.3-java)
|
86
87
|
i18n (1.8.2)
|
87
88
|
concurrent-ruby (~> 1.0)
|
88
|
-
jaro_winkler (1.5.4)
|
89
|
-
jaro_winkler (1.5.4-java)
|
90
89
|
jdbc-sqlite3 (3.28.0)
|
91
|
-
|
90
|
+
json (2.3.0)
|
91
|
+
json (2.3.0-java)
|
92
|
+
loofah (2.5.0)
|
92
93
|
crass (~> 1.0.2)
|
93
94
|
nokogiri (>= 1.5.9)
|
94
95
|
mail (2.7.1)
|
@@ -96,74 +97,72 @@ GEM
|
|
96
97
|
marcel (0.3.3)
|
97
98
|
mimemagic (~> 0.3.2)
|
98
99
|
method_source (0.9.2)
|
99
|
-
mimemagic (0.3.
|
100
|
+
mimemagic (0.3.5)
|
100
101
|
mini_mime (1.0.2)
|
101
102
|
mini_portile2 (2.4.0)
|
102
|
-
minitest (5.14.
|
103
|
+
minitest (5.14.1)
|
103
104
|
nio4r (2.5.2)
|
104
105
|
nio4r (2.5.2-java)
|
105
|
-
nokogiri (1.10.
|
106
|
+
nokogiri (1.10.9)
|
106
107
|
mini_portile2 (~> 2.4.0)
|
107
|
-
nokogiri (1.10.
|
108
|
-
parallel (1.19.
|
109
|
-
parser (2.7.
|
108
|
+
nokogiri (1.10.9-java)
|
109
|
+
parallel (1.19.2)
|
110
|
+
parser (2.7.1.3)
|
110
111
|
ast (~> 2.4.0)
|
111
|
-
pry (0.12.2)
|
112
|
-
coderay (~> 1.1.0)
|
113
|
-
method_source (~> 0.9.0)
|
114
|
-
pry-byebug (3.8.0)
|
115
|
-
byebug (~> 11.0)
|
116
|
-
pry (~> 0.10)
|
117
112
|
rack (2.2.2)
|
118
|
-
rack-protection (2.0.8.1)
|
119
|
-
rack
|
120
113
|
rack-test (1.1.0)
|
121
114
|
rack (>= 1.0, < 3)
|
122
|
-
rails (6.0.
|
123
|
-
actioncable (= 6.0.
|
124
|
-
actionmailbox (= 6.0.
|
125
|
-
actionmailer (= 6.0.
|
126
|
-
actionpack (= 6.0.
|
127
|
-
actiontext (= 6.0.
|
128
|
-
actionview (= 6.0.
|
129
|
-
activejob (= 6.0.
|
130
|
-
activemodel (= 6.0.
|
131
|
-
activerecord (= 6.0.
|
132
|
-
activestorage (= 6.0.
|
133
|
-
activesupport (= 6.0.
|
115
|
+
rails (6.0.3.1)
|
116
|
+
actioncable (= 6.0.3.1)
|
117
|
+
actionmailbox (= 6.0.3.1)
|
118
|
+
actionmailer (= 6.0.3.1)
|
119
|
+
actionpack (= 6.0.3.1)
|
120
|
+
actiontext (= 6.0.3.1)
|
121
|
+
actionview (= 6.0.3.1)
|
122
|
+
activejob (= 6.0.3.1)
|
123
|
+
activemodel (= 6.0.3.1)
|
124
|
+
activerecord (= 6.0.3.1)
|
125
|
+
activestorage (= 6.0.3.1)
|
126
|
+
activesupport (= 6.0.3.1)
|
134
127
|
bundler (>= 1.3.0)
|
135
|
-
railties (= 6.0.
|
128
|
+
railties (= 6.0.3.1)
|
136
129
|
sprockets-rails (>= 2.0.0)
|
137
130
|
rails-dom-testing (2.0.3)
|
138
131
|
activesupport (>= 4.2.0)
|
139
132
|
nokogiri (>= 1.6)
|
140
133
|
rails-html-sanitizer (1.3.0)
|
141
134
|
loofah (~> 2.3)
|
142
|
-
railties (6.0.
|
143
|
-
actionpack (= 6.0.
|
144
|
-
activesupport (= 6.0.
|
135
|
+
railties (6.0.3.1)
|
136
|
+
actionpack (= 6.0.3.1)
|
137
|
+
activesupport (= 6.0.3.1)
|
145
138
|
method_source
|
146
139
|
rake (>= 0.8.7)
|
147
140
|
thor (>= 0.20.3, < 2.0)
|
148
141
|
rainbow (3.0.0)
|
149
142
|
rake (13.0.1)
|
150
|
-
redis (4.
|
143
|
+
redis (4.2.0)
|
151
144
|
redis-namespace (1.7.0)
|
152
145
|
redis (>= 3.0.4)
|
153
|
-
|
154
|
-
|
146
|
+
regexp_parser (1.7.1)
|
147
|
+
rexml (3.2.4)
|
148
|
+
rubocop (0.85.1)
|
155
149
|
parallel (~> 1.10)
|
156
150
|
parser (>= 2.7.0.1)
|
157
151
|
rainbow (>= 2.2.2, < 4.0)
|
152
|
+
regexp_parser (>= 1.7)
|
153
|
+
rexml
|
154
|
+
rubocop-ast (>= 0.0.3)
|
158
155
|
ruby-progressbar (~> 1.7)
|
159
|
-
unicode-display_width (>= 1.4.0, <
|
160
|
-
rubocop-
|
156
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
157
|
+
rubocop-ast (0.0.3)
|
158
|
+
parser (>= 2.7.0.1)
|
159
|
+
rubocop-performance (1.6.1)
|
161
160
|
rubocop (>= 0.71.0)
|
162
161
|
ruby-progressbar (1.10.1)
|
163
|
-
simplecov (0.18.
|
162
|
+
simplecov (0.18.5)
|
164
163
|
docile (~> 1.1)
|
165
164
|
simplecov-html (~> 0.11)
|
166
|
-
simplecov-html (0.12.
|
165
|
+
simplecov-html (0.12.2)
|
167
166
|
sprockets (4.0.0)
|
168
167
|
concurrent-ruby (~> 1.0)
|
169
168
|
rack (> 1, < 3)
|
@@ -172,22 +171,23 @@ GEM
|
|
172
171
|
activesupport (>= 4.0)
|
173
172
|
sprockets (>= 3.0.0)
|
174
173
|
sqlite3 (1.4.2)
|
175
|
-
standard (0.
|
176
|
-
rubocop (~> 0.
|
177
|
-
rubocop-performance (~> 1.
|
174
|
+
standard (0.4.7)
|
175
|
+
rubocop (~> 0.85.0)
|
176
|
+
rubocop-performance (~> 1.6.0)
|
178
177
|
thor (1.0.1)
|
179
178
|
thread_safe (0.3.6)
|
180
179
|
thread_safe (0.3.6-java)
|
181
180
|
toxiproxy (1.0.3)
|
182
|
-
tzinfo (1.2.
|
181
|
+
tzinfo (1.2.7)
|
183
182
|
thread_safe (~> 0.1)
|
184
|
-
unicode-display_width (1.
|
185
|
-
|
183
|
+
unicode-display_width (1.7.0)
|
184
|
+
url (0.3.2)
|
185
|
+
websocket-driver (0.7.2)
|
186
186
|
websocket-extensions (>= 0.1.0)
|
187
|
-
websocket-driver (0.7.
|
187
|
+
websocket-driver (0.7.2-java)
|
188
188
|
websocket-extensions (>= 0.1.0)
|
189
189
|
websocket-extensions (0.1.4)
|
190
|
-
zeitwerk (2.
|
190
|
+
zeitwerk (2.3.0)
|
191
191
|
|
192
192
|
PLATFORMS
|
193
193
|
java
|
@@ -195,9 +195,9 @@ PLATFORMS
|
|
195
195
|
|
196
196
|
DEPENDENCIES
|
197
197
|
activerecord-jdbcsqlite3-adapter
|
198
|
+
codecov
|
198
199
|
hiredis
|
199
200
|
minitest
|
200
|
-
pry-byebug
|
201
201
|
rails (>= 6.0.2)
|
202
202
|
rake
|
203
203
|
redis-namespace
|
data/Pro-Changes.md
CHANGED
@@ -2,13 +2,21 @@
|
|
2
2
|
|
3
3
|
[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
|
4
4
|
|
5
|
-
Please see [
|
5
|
+
Please see [sidekiq.org](https://sidekiq.org/) for more details and how to buy.
|
6
6
|
|
7
|
-
|
7
|
+
5.1.0
|
8
8
|
---------
|
9
9
|
|
10
|
+
- Remove old Statsd metrics with `WorkerName` in the name [#4377]
|
11
|
+
```
|
12
|
+
job.WorkerName.count -> job.count with tag worker:WorkerName
|
13
|
+
job.WorkerName.perform -> job.perform with tag worker:WorkerName
|
14
|
+
job.WorkerName.failure -> job.failure with tag worker:WorkerName
|
15
|
+
```
|
16
|
+
- Remove `concurrent-ruby` gem dependency [#4586]
|
10
17
|
- Update `constantize` for batch callbacks. [#4469]
|
11
|
-
|
18
|
+
- Add queue tag to `jobs.recovered.fetch` metric [#4594]
|
19
|
+
- Refactor Pro's fetch infrastructure [#4602]
|
12
20
|
|
13
21
|
5.0.1
|
14
22
|
---------
|
data/README.md
CHANGED
@@ -2,11 +2,8 @@ Sidekiq
|
|
2
2
|
==============
|
3
3
|
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/sidekiq.svg)](https://rubygems.org/gems/sidekiq)
|
5
|
-
[![
|
6
|
-
[![Test Coverage](https://codeclimate.com/github/mperham/sidekiq/badges/coverage.svg)](https://codeclimate.com/github/mperham/sidekiq/coverage)
|
5
|
+
[![Codecov](https://codecov.io/gh/mperham/sidekiq/branch/master/graph/badge.svg)](https://codecov.io/gh/mperham/sidekiq)
|
7
6
|
[![Build Status](https://circleci.com/gh/mperham/sidekiq/tree/master.svg?style=svg)](https://circleci.com/gh/mperham/sidekiq/tree/master)
|
8
|
-
[![Gitter Chat](https://badges.gitter.im/mperham/sidekiq.svg)](https://gitter.im/mperham/sidekiq)
|
9
|
-
|
10
7
|
|
11
8
|
Simple, efficient background processing for Ruby.
|
12
9
|
|
@@ -94,4 +91,4 @@ Please see [LICENSE](https://github.com/mperham/sidekiq/blob/master/LICENSE) for
|
|
94
91
|
Author
|
95
92
|
-----------------
|
96
93
|
|
97
|
-
Mike Perham, [@
|
94
|
+
Mike Perham, [@getajobmike](https://twitter.com/getajobmike) / [@sidekiq](https://twitter.com/sidekiq), [https://www.mikeperham.com](https://www.mikeperham.com) / [https://www.contribsys.com](https://www.contribsys.com)
|
data/bin/sidekiq
CHANGED
@@ -31,7 +31,12 @@ begin
|
|
31
31
|
cli.run
|
32
32
|
rescue => e
|
33
33
|
raise e if $DEBUG
|
34
|
-
|
35
|
-
|
34
|
+
if Sidekiq.error_handlers.length == 0
|
35
|
+
STDERR.puts e.message
|
36
|
+
STDERR.puts e.backtrace.join("\n")
|
37
|
+
else
|
38
|
+
cli.handle_exception e
|
39
|
+
end
|
40
|
+
|
36
41
|
exit 1
|
37
42
|
end
|