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