lib/capistrano/tasks/capistrano2.rb in capistrano-sidekiq-0.3.4 vs lib/capistrano/tasks/capistrano2.rb in capistrano-sidekiq-0.3.5

- old
+ new

@@ -45,9 +45,10 @@ def start_process(pid_file, idx) args = [] args.push "--index #{idx}" args.push "--pidfile #{pid_file}" args.push "--environment #{fetch(:sidekiq_env)}" + args.push "--tag #{fetch(:sidekiq_tag)}" if fetch(:sidekiq_tag) args.push "--logfile #{fetch(:sidekiq_log)}" if fetch(:sidekiq_log) args.push fetch(:sidekiq_options) if defined?(JRUBY_VERSION) args.push '>/dev/null 2>&1 &'