capistrano-sidekiq 0.3.5 → 0.3.6
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9edb38405222576fce492b0c77a9c6ba2dee7bb6
|
4
|
+
data.tar.gz: 0ea1fe8a36a8566d03d26cc68be5dcb7406825cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b94ffa22a4abc9e36fc48a86d444d8ac5eb4d3d3d39df9180392ca67b6619eb3856a04a1761cea1a3f59b9afa76844f907620ab6bc69f071b902a45baa12561f
|
7
|
+
data.tar.gz: c260577d4f458bb56d2d7a9142cde377bc1bde20d744cd0b91a21a397d56f483ae15cc0eb492723c96d8bbfa596dc47ac3a446e307850fad7d168ffc54965e8b
|
@@ -4,6 +4,7 @@ Capistrano::Configuration.instance.load do
|
|
4
4
|
|
5
5
|
_cset(:sidekiq_pid) { File.join(shared_path, 'pids', 'sidekiq.pid') }
|
6
6
|
_cset(:sidekiq_env) { fetch(:rack_env, fetch(:rails_env, 'production')) }
|
7
|
+
_cset(:sidekiq_tag) { nil }
|
7
8
|
_cset(:sidekiq_log) { File.join(shared_path, 'log', 'sidekiq.log') }
|
8
9
|
|
9
10
|
_cset(:sidekiq_options) { nil }
|
@@ -19,7 +19,7 @@ namespace :deploy do
|
|
19
19
|
before :starting, :check_sidekiq_hooks do
|
20
20
|
invoke 'sidekiq:add_default_hooks' if fetch(:sidekiq_default_hooks)
|
21
21
|
end
|
22
|
-
after :
|
22
|
+
after :publishing, :restart_sidekiq do
|
23
23
|
invoke 'sidekiq:restart' if fetch(:sidekiq_default_hooks)
|
24
24
|
end
|
25
25
|
end
|
@@ -47,11 +47,11 @@ namespace :sidekiq do
|
|
47
47
|
end
|
48
48
|
|
49
49
|
def pid_process_exists?(pid_file)
|
50
|
-
pid_file_exists?(pid_file) and test("kill -0 $( cat #{pid_file} )")
|
50
|
+
pid_file_exists?(pid_file) and test(*("kill -0 $( cat #{pid_file} )").split(' '))
|
51
51
|
end
|
52
52
|
|
53
53
|
def pid_file_exists?(pid_file)
|
54
|
-
test("[ -f #{pid_file} ]")
|
54
|
+
test(*("[ -f #{pid_file} ]").split(' '))
|
55
55
|
end
|
56
56
|
|
57
57
|
def stop_sidekiq(pid_file)
|
@@ -2,8 +2,8 @@
|
|
2
2
|
<% processes_pids.each_with_index do |pid_file, idx| %>
|
3
3
|
check process <%= sidekiq_service_name(idx) %>
|
4
4
|
with pidfile "<%= pid_file %>"
|
5
|
-
start program = "/usr/bin/sudo -u <%= @role.user %> /bin/bash -c 'cd <%= current_path %> && <%= SSHKit.config.command_map[:bundle] %> exec sidekiq
|
5
|
+
start program = "/usr/bin/sudo -u <%= @role.user %> /bin/bash -c 'cd <%= current_path %> && <%= SSHKit.config.command_map[:bundle] %> exec sidekiq <% if fetch(:sidekiq_config) %> -C <%= fetch(:sidekiq_config) %> <% end %> -P <%= pid_file %>'" with timeout 30 seconds
|
6
6
|
stop program = "/usr/bin/sudo -u <%= @role.user %> /bin/bash -c 'cd <%= current_path %> && <%= SSHKit.config.command_map[:bundle] %> exec sidekiqctl stop <%= pid_file %>'" with timeout <%= fetch(:sidekiq_timeout).to_i + 10 %> seconds
|
7
7
|
group <%= fetch(:sidekiq_monit_group, fetch(:application)) %>-sidekiq
|
8
8
|
|
9
|
-
<% end %>
|
9
|
+
<% end %>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-sidekiq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Abdelkader Boudih
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|