Merge "Allow gunicorn workers 5 min. to process requests"

This commit is contained in:
Jenkins 2016-03-29 20:15:15 +00:00 committed by Gerrit Code Review
commit bf0fb3b0e2
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import multiprocessing
bind = '[::]:5000'
workers = workers = multiprocessing.cpu_count() * 2 + 1
timeout=60
timeout = 300
backlog = 2048
worker_class ="sync"
debug = False