Skip to content

Commit

Permalink
Fix regression in #191
Browse files Browse the repository at this point in the history
  • Loading branch information
seuros committed Apr 3, 2018
1 parent 5d1b885 commit ddb86ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Add deploy failure handling @phillbaker
- Support custom monit filename @zocoi
- Systemd Integration @baierjan
- Fix regression in sidekiq_roles variable

## 1.0.0

Expand Down
2 changes: 1 addition & 1 deletion lib/capistrano/tasks/sidekiq.rake
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace :load do
set :sidekiq_env, -> { fetch(:rack_env, fetch(:rails_env, fetch(:stage))) }
set :sidekiq_log, -> { File.join(shared_path, 'log', 'sidekiq.log') }
set :sidekiq_timeout, 10
set :sidekiq_roles, :app
set :sidekiq_roles, fetch(:sidekiq_role, :app)
set :sidekiq_processes, 1
set :sidekiq_options_per_process, nil
set :sidekiq_user, nil
Expand Down

0 comments on commit ddb86ec

Please sign in to comment.