Fix wsgi_venv path for cloudkitty-api

Previous to this change the uwsgi config had virtualenv include /bin, leading to $venv/bin/bin in execution

Change-Id: I4d2b60b655e5688359ed7b65569ec5500c542c0f
This commit is contained in:
Jonathan Herlin 2021-03-24 19:14:11 +01:00
parent cd5d16d715
commit c35565f419
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ uwsgi_cloudkitty_services: |-
and ('wsgi_app' in value and value['wsgi_app']) %}
{% set _ = value.update(
{
'wsgi_venv': cloudkitty_bin,
'wsgi_venv': cloudkitty_bin | dirname,
'uwsgi_uid': cloudkitty_system_user_name,
'uwsgi_guid': cloudkitty_system_group_name,
'uwsgi_processes': cloudkitty_wsgi_processes,