Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sidekiq readme.md #344

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cookbooks/sidekiq/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ Stop sidekiq at the start of the deploy in `deploy/before_bundle.rb`:

```
on_utilities("sidekiq") do
sudo "monit stop all -g #{config.app}_sidekiq"
worker_count = 1 # change as needed
(0...worker_count).each do |i|
sudo "monit stop all -g #{config.app}_sidekiq"
(0...worker_count).each do |i|
sudo "/engineyard/bin/sidekiq #{config.app} stop #{config.framework_env} #{i}"
end
end
Expand All @@ -119,9 +119,9 @@ Stop sidekiq at the start of the deploy in `deploy/before_bundle.rb`:

```
on_app_servers do
sudo "monit stop all -g #{config.app}_sidekiq"
worker_count = 1 # change as needed
(0...worker_count).each do |i|
sudo "monit stop all -g #{config.app}_sidekiq"
sudo "/engineyard/bin/sidekiq #{config.app} stop #{config.framework_env} #{i}"
end
end
Expand Down