Commit 3bf00a5ffc65f81cb5708c0be6914dfda24184a1
1 parent
3f3702c1
Exists in
master
and in
34 other branches
Increased gunicorn timeout to 90 seconds to match nginx
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
cookbooks/colab/templates/gunicorn.py.erb
@@ -4,3 +4,4 @@ bind = "127.0.0.1:8001" | @@ -4,3 +4,4 @@ bind = "127.0.0.1:8001" | ||
4 | workers = <%= node['config']['colab_http_workers'] || 'multiprocessing.cpu_count() * 2 + 1' %> | 4 | workers = <%= node['config']['colab_http_workers'] || 'multiprocessing.cpu_count() * 2 + 1' %> |
5 | syslog = True | 5 | syslog = True |
6 | proc_name = "colab" | 6 | proc_name = "colab" |
7 | +timeout = 90 |