From ed350c805486bb70bd96ad0846af87fe80af0002 Mon Sep 17 00:00:00 2001 From: HACKERMD Date: Tue, 15 Nov 2016 05:29:57 +0100 Subject: [PATCH] Convert uwsgi_processes variable value to int --- tmsetup/share/playbooks/roles/tmaps-web/templates/uwsgi.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmsetup/share/playbooks/roles/tmaps-web/templates/uwsgi.ini.j2 b/tmsetup/share/playbooks/roles/tmaps-web/templates/uwsgi.ini.j2 index bc7d3e1..1a635f6 100644 --- a/tmsetup/share/playbooks/roles/tmaps-web/templates/uwsgi.ini.j2 +++ b/tmsetup/share/playbooks/roles/tmaps-web/templates/uwsgi.ini.j2 @@ -6,7 +6,7 @@ socket = $(HOME)/.tmaps/uwsgi.sock chmod-socket = 666 vacuum = true master = true -processes = "{{ uwsgi_processes }}" +processes = "{{ uwsgi_processes|int }}" gevent = 100 die-on-term = true lazy-apps = true