diff options
author | rexlee8776 <limingjiang@huawei.com> | 2018-07-01 04:02:52 +0000 |
---|---|---|
committer | Rex Lee <limingjiang@huawei.com> | 2018-07-01 05:17:34 +0000 |
commit | b521b6677fa4f7a67e2acadf40dd967f817060a2 (patch) | |
tree | 4950e3906f453aee061c7c4330b9090a343347e3 /ansible/roles | |
parent | c45a1d66e51e8eb5f0a55193dfe4993dfc793dc6 (diff) |
Bugfix: uwsgi config file yardstick.ini output error
JIRA: YARDSTICK-1280
Change-Id: I45b4b781cee21035897ba0c34dc740af6365e918
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
(cherry picked from commit 27858564cfaf4809808de52a843d2c60c13326e2)
Diffstat (limited to 'ansible/roles')
-rw-r--r-- | ansible/roles/configure_uwsgi/templates/yardstick.ini.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ansible/roles/configure_uwsgi/templates/yardstick.ini.j2 b/ansible/roles/configure_uwsgi/templates/yardstick.ini.j2 index c049daf84..044f42acb 100644 --- a/ansible/roles/configure_uwsgi/templates/yardstick.ini.j2 +++ b/ansible/roles/configure_uwsgi/templates/yardstick.ini.j2 @@ -1,7 +1,7 @@ [uwsgi] master = true debug = true -chdir = {{ yardstick_dir }}api +chdir = {{ yardstick_dir }}/api module = server plugins = python processes = 10 @@ -15,4 +15,4 @@ close-on-exec = 1 daemonize = {{ log_dir }}uwsgi.log socket = {{ socket_file }} {# If virtual environment, we need to add: - virtualenv = <virtual_env> #}
\ No newline at end of file + virtualenv = <virtual_env> #} |