Commit 29a7ff53 by Karl Kloppenborg

stop nil processor error

parent ed91d229
...@@ -41,6 +41,7 @@ namespace :sneakers do ...@@ -41,6 +41,7 @@ namespace :sneakers do
def processes_pids def processes_pids
pids = [] pids = []
raise "sneaker_processes is nil class, cannot continue, please [set :sneaker_processes]" if fetch(:sneakers_processes).nil?
fetch(:sneakers_processes).times do |idx| fetch(:sneakers_processes).times do |idx|
pids.push (idx.zero? && fetch(:sneakers_processes) <= 1) ? pids.push (idx.zero? && fetch(:sneakers_processes) <= 1) ?
fetch(:sneakers_pid) : fetch(:sneakers_pid) :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment