Remove --enable-threads param 23/88823/1 1.3.2
authorfujinhua <fu.jinhua@zte.com.cn>
Thu, 30 May 2019 06:07:54 +0000 (14:07 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Thu, 30 May 2019 06:07:54 +0000 (14:07 +0800)
Change-Id: I87a04cd218059fd6a41c7098ec8972d49a89697c
Issue-ID: VFC-1397
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
res/run.sh

index e371a04..77beb8a 100755 (executable)
@@ -21,8 +21,8 @@ fi
 # nohup python manage.py runserver 0.0.0.0:8802 > /dev/null &
 
 if [ "${SSL_ENABLED}" = "true" ]; then
-    nohup uwsgi --https :8802,res/pub/ssl/cert/foobar.crt,res/pub/ssl/cert/foobar.key, -t 120 --enable-threads --module res.wsgi --master --processes 4 &
+    nohup uwsgi --https :8802,res/pub/ssl/cert/foobar.crt,res/pub/ssl/cert/foobar.key, -t 120 --module res.wsgi --master --processes 4 &
 else
-    nohup uwsgi --http :8802 -t 120 --enable-threads --module res.wsgi --master --processes 4 &
+    nohup uwsgi --http :8802 -t 120 --module res.wsgi --master --processes 4 &
 fi