Commit 41e981740ffc54f68ae5f8fe7b719183cd125094

Authored by Dmitriy Zaporozhets
1 parent 729b358f

Use 2 workers in development

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing 2 changed files with 3 additions and 1 deletions   Show diff stats
Procfile
1   -web: bundle exec unicorn_rails -p $PORT -E development
  1 +web: bundle exec unicorn_rails -p $PORT -E development -c config/unicorn_development.rb
2 2 worker: bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,common,default,gitlab_shell
... ...
config/unicorn_development.rb 0 → 100644
... ... @@ -0,0 +1,2 @@
  1 +worker_processes 2
  2 +timeout 30
... ...