diff options
Diffstat (limited to 'ocata')
-rwxr-xr-x | ocata/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ocata/run.sh b/ocata/run.sh index 027b98c8..5d027658 100755 --- a/ocata/run.sh +++ b/ocata/run.sh @@ -20,10 +20,10 @@ export PYTHONPATH=lib/share #nohup python manage.py runserver 0.0.0.0:9006 2>&1 & if [ ${SSL_ENABLED} = "true" ]; then - nohup uwsgi --https :9006,ocata/pub/ssl/cert/cert.crt,ocata/pub/ssl/cert/cert.key --module ocata.wsgi --master --processes 4 & + nohup uwsgi --https :9006,ocata/pub/ssl/cert/cert.crt,ocata/pub/ssl/cert/cert.key --module ocata.wsgi --master --enable-threads --processes 4 & else - nohup uwsgi --http :9006 --module ocata.wsgi --master --processes 4 & + nohup uwsgi --http :9006 --module ocata.wsgi --master --enable-threads --processes 4 & fi logDir="/var/log/onap/multicloud/openstack/ocata" |