Commit 6ff3073e by Karl Kloppenborg

Adding false condition to sneakers_workers fetch array

parent a6c41c00
...@@ -90,7 +90,7 @@ namespace :sneakers do ...@@ -90,7 +90,7 @@ namespace :sneakers do
args = [] args = []
if fetch(:sneakers_run_config) == true if fetch(:sneakers_run_config) == true
# Use sneakers configuration prebuilt in # Use sneakers configuration prebuilt in
raise "[ set :workers, ['worker1', 'workerN'] ] not configured properly, please configure the workers you wish to use" if fetch(:sneakers_workers).nil? or !fetch(:sneakers_workers).kind_of Array raise "[ set :workers, ['worker1', 'workerN'] ] not configured properly, please configure the workers you wish to use" if fetch(:sneakers_workers).nil? or fetch(:sneakers_workers) == false or !fetch(:sneakers_workers).kind_of? Array
workers = fetch(:sneakers_workers).compact.join(',') workers = fetch(:sneakers_workers).compact.join(',')
raise "Workers = #{workers}" raise "Workers = #{workers}"
......
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