unicorn-camilo 4.8.2.5.17 → 4.8.2.5.18
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/GIT-VERSION-FILE +1 -1
- data/lib/unicorn/configurator.rb +2 -2
- data/lib/unicorn/version.rb +1 -1
- data/unicorn.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66d89131188c4b2ebc8040753ddd8b1a43009c7d
|
|
4
|
+
data.tar.gz: 081d48d7998191996e23644826ded65727fd64e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03c1c09173654a6f689a5ce343d2010e13dd44531c64d86c8bf0e0ce5b0db2d46d0e0379971fb69e84c08b0e6e573e10d8f951ecea11faba5f62590136a23457
|
|
7
|
+
data.tar.gz: f631ef113217da77ecb203e06a9535e3845c8f5eb211d68c479caebd26a09ece617523a78cffa4e89fd0113628a0c1f0cf021a30abb23bbd163ff6e4d14d4083
|
data/GIT-VERSION-FILE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
GIT_VERSION = 4.8.2.
|
|
1
|
+
GIT_VERSION = 4.8.2.7.g6a7d.dirty
|
data/lib/unicorn/configurator.rb
CHANGED
|
@@ -180,9 +180,9 @@ class Unicorn::Configurator
|
|
|
180
180
|
set_hook_arg = if block_given?
|
|
181
181
|
# This hook is meant a an instrumentation point, it should not prevent the
|
|
182
182
|
# worker from getting killed exception will be logged and move on
|
|
183
|
-
new_block = Proc.new do
|
|
183
|
+
new_block = Proc.new do |*args|
|
|
184
184
|
begin
|
|
185
|
-
block.call
|
|
185
|
+
block.call(*args)
|
|
186
186
|
rescue e
|
|
187
187
|
logger.error("Error trying to run before murder exception: #{e.name}")
|
|
188
188
|
end
|
data/lib/unicorn/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Unicorn::Const::UNICORN_VERSION = '4.8.2.
|
|
1
|
+
Unicorn::Const::UNICORN_VERSION = '4.8.2.7.g6a7d.dirty'
|
data/unicorn.gemspec
CHANGED