diff options
author | Xiaohua Zhang <xiaohua.zhang@windriver.com> | 2019-04-04 08:08:35 +0000 |
---|---|---|
committer | Xiaohua Zhang <xiaohua.zhang@windriver.com> | 2019-04-04 08:34:07 +0000 |
commit | 54700feaf9055b2192612e4c3958c6ac5bbd6a56 (patch) | |
tree | 788f1e23b372c57bc3942e639c7562458c4119a4 /newton | |
parent | 0491327f8dcd808402669c3d8f32a5a0f879db45 (diff) |
Fix thread helper bug
the uwsgi disable threads by default. Enable it with additonal option.
The post and get API request might routed to different uwsgi process,
Leverage memcached to sync backlog items between uwsgi process
Change-Id: Iaac6b66061f2c396cd24825ab020f0a937dfb505
Issue-ID: MULTICLOUD-561
Signed-off-by: Xiaohua Zhang <xiaohua.zhang@windriver.com>
Diffstat (limited to 'newton')
-rwxr-xr-x | newton/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newton/run.sh b/newton/run.sh index a355cb8d..a620b1da 100755 --- a/newton/run.sh +++ b/newton/run.sh @@ -16,7 +16,7 @@ memcached -d -m 2048 -u root -c 1024 -p 11211 -P /tmp/memcached1.pid export PYTHONPATH=lib/share #nohup python manage.py runserver 0.0.0.0:9003 2>&1 & -nohup uwsgi --http :9003 --module newton.wsgi --master --processes 4 & +nohup uwsgi --http :9003 --module newton.wsgi --master --enable-threads --processes 4 & logDir="/var/log/onap/multicloud/openstack/newton" if [ ! -x $logDir ]; then |