summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2013-07-27 07:40:33 -0600
committermo khan <mo@mokhan.ca>2013-07-27 07:40:33 -0600
commitae24eb408eaad90d04142907fa40c8dcb8f3419f (patch)
treed70af7d45eb986e4e1d7199a04004ef2ce20f93a
parent744ef6b35357a4221ccde7368abf2489c9b3ee91 (diff)
increase unicorn workers from 2 to 4
-rw-r--r--config/recipes/unicorn.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/recipes/unicorn.rb b/config/recipes/unicorn.rb
index 18b05dd..4df9af8 100644
--- a/config/recipes/unicorn.rb
+++ b/config/recipes/unicorn.rb
@@ -2,7 +2,7 @@ set_default(:unicorn_user) { user }
set_default(:unicorn_pid) { "#{current_path}/tmp/pids/unicorn.pid" }
set_default(:unicorn_config) { "#{shared_path}/config/unicorn.rb" }
set_default(:unicorn_log) { "#{shared_path}/log/unicorn.log" }
-set_default(:unicorn_workers, 2)
+set_default(:unicorn_workers, 4)
namespace :unicorn do
desc "Setup Unicorn initializer and app configuration"